Forum Replies Created

Viewing 15 posts - 166 through 180 (of 359 total)

  • RE: RAISERROR from within a stored procedure

    is there any reason that you need to use the pearl script to scheule over a SQL job?

    also look up output

    http://msdn.microsoft.com/en-us/library/ms177564.aspx

    ***The first step is always the hardest *******

  • RE: Transform data into 2 more columns

    Look up Ranking functions here is an example

    create table #t1 (id int,col varchar(5))

    insert into #t1 select 102,'#1' union all

    select 102,'#2' union all

    select 102,'#3' union all

    select 105,'#4' union all

    select 105,'#5' union...

    ***The first step is always the hardest *******

  • RE: Which is Best to use, #Temp Table or @Table Variable?

    Depending on what your doing what about using a CTE?

    ***The first step is always the hardest *******

  • RE: cursor with session

    quite possible an error in the processing section causing the script to exit your cursor However the cursor is not closed and not deallocated within the session therefore the...

    ***The first step is always the hardest *******

  • RE: Today's Random Word!

    SQLRNNR (7/18/2012)


    chronometer

    Tronometer

    ***The first step is always the hardest *******

  • RE: Loop within a Loop

    as today is the 13th its a good day my lucky day 🙂 other day was a dark day lol 😀

    ***The first step is always the hardest *******

  • RE: FROM clause challenge

    try the union that i added

    ***The first step is always the hardest *******

  • RE: Import XML Data into SQL tables

    im no XML expert but, i use this command to import xml files in to my database, I created a SP using the dynamic SQL so i can...

    ***The first step is always the hardest *******

  • RE: Today's Random Word!

    Cliff Jones (7/12/2012)


    SGT_squeequal (7/12/2012)


    crapiola

    granola!

    Granyola

    ***The first step is always the hardest *******

  • RE: FROM clause challenge

    syntax is correct but does it bring back correct records?

    this may be better

    select .........

    FROM

    Evy_RH_Objects.dbo.RETAIL_SALES I

    INNER JOIN RH2007_EvyLive.dbo.ITEMMAST J on J.SKU=I.SKU

    union

    select .........

    FROM

    Evy_RH_Objects.dbo.RETAIL_SALES I

    INNER JOIN RH2007_EvyLive.dbo.ITEMMAST J...

    ***The first step is always the hardest *******

  • RE: Today's Random Word!

    crapiola

    ***The first step is always the hardest *******

  • RE: Loop within a Loop

    :hehe:

    Jeff Moden (7/12/2012)


    SGT_squeequal (7/12/2012)


    I dont really know how to take your remark, are you being a popmus git, just showing off or trying to help? mmm

    will grant, that set...

    ***The first step is always the hardest *******

  • RE: Loop within a Loop

    I dont really know how to take your remark, are you being a popmus git, just showing off or trying to help? mmm

    will grant, that set based, over loop...

    ***The first step is always the hardest *******

  • RE: Loop within a Loop

    i used the loop before any of the set based ooptions appeard plenty to ponder for the future :);-)

    ***The first step is always the hardest *******

  • RE: Loop within a Loop

    I used the while loop within while loop worked a treat for what i need :), thanks for all the SET based solutions but id used the loop to complete...

    ***The first step is always the hardest *******

Viewing 15 posts - 166 through 180 (of 359 total)