Forum Replies Created

Viewing 15 posts - 301 through 315 (of 860 total)

  • RE: Today's Random Word!

    rhythmk (7/10/2012)


    capn.hector (7/10/2012)


    jasona.work (7/10/2012)


    SQLRNNR (7/10/2012)


    Cliff Jones (7/10/2012)


    crookj (7/10/2012)


    Daniel Bowlin (7/10/2012)


    rhythmk (7/9/2012)


    Possinator (7/9/2012)


    SQLRNNR (7/9/2012)


    Cliff Jones (7/9/2012)


    Ray K (7/9/2012)


    Revenant (7/9/2012)


    rhythmk (7/9/2012)


    Brandie Tarvin (7/9/2012)


    Daniel Bowlin (7/9/2012)


    Heatwave

    Heatstroke

    Engine

    Piston

    V6

    V8

    HEMI

    Barracuda

    Fearsome

    Foursome

    Quartette

    Beatles!

    Monkees

    MonkeeMobile!

    wiener mobile

    Hot Dog

    Microwave

  • RE: Today's Random Word!

    jasona.work (7/10/2012)


    SQLRNNR (7/10/2012)


    Cliff Jones (7/10/2012)


    crookj (7/10/2012)


    Daniel Bowlin (7/10/2012)


    rhythmk (7/9/2012)


    Possinator (7/9/2012)


    SQLRNNR (7/9/2012)


    Cliff Jones (7/9/2012)


    Ray K (7/9/2012)


    Revenant (7/9/2012)


    rhythmk (7/9/2012)


    Brandie Tarvin (7/9/2012)


    Daniel Bowlin (7/9/2012)


    Heatwave

    Heatstroke

    Engine

    Piston

    V6

    V8

    HEMI

    Barracuda

    Fearsome

    Foursome

    Quartette

    Beatles!

    Monkees

    MonkeeMobile!

    wiener mobile

  • RE: Fill variable from cursor

    eh.shams (7/10/2012)


    please attention , these are variable not aggregation function, i chenge it name to ali

    SET NOCOUNT ON;

    Declare @90000119 varchar(8),@ali varchar(50)

    Declare @cslPricingFactorRef varchar(3),@Avamel varchar(50)

    SET @90000119 = 0;@ali=0

    Declare spid_List2 Cursor FORWARD_ONLY...

  • RE: Synonym to Indexed view not using the correct execution plan

    Taking a wild *** guess here and wondering if its because when using the synonym the query optimizer does not see the index on the view?? not sure why...

  • RE: Does dropping pk,fks, and indexes required while data migration?

    on some of our ETL loads we have a staging database with an initial table. we then run data validation and insert into a second staging table then insert...

  • RE: Using Table valued function

    it depends. way to vague to really answer. can you post a more detailed explanation and some DDL, Sample data, and expected results?

    See the first link in my...

  • RE: connection with Sybase

    what is the exact error you are getting. if you were getting no errors with the code you posted the changes to the code should not have caused any...

  • RE: connection with Sybase

    Munabhai (7/2/2012)


    Hello Friends,

    I have employee table which is in sybase, which looks like

    EmployeeIDEmpName Salary State

    1 ...

  • RE: Split comma-delimited field for all rows in table

    Bill Talada (7/2/2012)


    @ Lynn Pettis

    I don't remember you posting code for your 8k splitter. We all knew there was a general splitter function being used. It doesn't matter...

  • RE: is a cursor really needed?

    eagb (6/28/2012)


    Yes you are correct it's part of the trigger. Thank you for helping me see that! Unfortunately I can only suggest they change the linked database so most likely...

  • RE: How to migrate SQL 2000 Stored Procedures and Views to SQL 2008

    StephenNL (6/28/2012)


    @capn.hector

    Yes, I have attached the db on a non productive server in Hyper V (of course).

    The result was a language-collation error when attempting to add users (schemes).

    So, instead,...

  • RE: is a cursor really needed?

    is this line in the trigger?? from your post i think so:

    SELECT @ID=ID FROM deleted

    if so the trigger looks to only be able to handle one row being deleted...

  • RE: How to migrate SQL 2000 Stored Procedures and Views to SQL 2008

    have you tried restoring a backup taken from the 2k server on the 2008 server?? i believe that should work provided you set the compatibility level correctly on the...

  • RE: how to check datas from date to to date in a table by passing two parameter?

    i dont think you need your function. i think you just need the create proceture like follows:

    CREATE PROCEDURE MyProceture

    @StartDate DATE,

    @EndDate DATE

    AS

    SELECT ProducttId,

    ...

  • RE: Need help with CURSOR or other logic to get my data

    from your excel i can recomend you get rid of the line_on_charge table and have a composite key of charge_guid (although i may look at going to an int or...

Viewing 15 posts - 301 through 315 (of 860 total)