Forum Replies Created

Viewing 15 posts - 13,891 through 13,905 (of 26,486 total)

  • RE: TSQL Challenge 77-Transform monthly resource efforts to weekly actuals

    Jeff Moden (3/6/2012)


    Heh... when they delete the SPAM post, are you going to also delete the quote or perpetuate the SPAM? 😉

    Hy, what the heck! I went back...

  • RE: Multiple count() in a single SQL

    Jeff Moden (3/6/2012)


    I just know I'm going to regret getting involved with this one. 😛 Testing in progress...

    But you're so good at it! :Whistling: :w00t:

  • RE: Problem to write Special Function

    My bad. Probably did, but the OP seemed to keep talking about the uniqueidentifiers in later posts.

  • RE: Using table result within a script

    JayWinter (3/6/2012)


    My intent is to retrieve the last 5 records in the table by first sorting the table in descending order:

    ORDER BY

    ROW_NUMBER() OVER(ORDER BY RETAIL_SALES.YR

    ,RETAIL_SALES.MO, RETAIL_SALES.WK ASC) DESC

    Now the bottom...

  • RE: Need Help

    Check out this DMV in Books Online: sys.dm_exec_sessions

  • RE: SSIS

    And yes, if you know that there won't be duplicates you can change the UNIONs to UNION ALLs.

  • RE: SSIS

    You could also rewrite your procedure. Below are two possibilities, not sure if they are totally correct as I have nothing with which to test against.

    -- First rewrite of...

  • RE: SQL Source Control

    Microsoft Team Foundation Server

    subversion

    ClearCase

    Sourcegear Vault

    I'm sure you could find others with a simple Google or Bing search.

  • RE: Move File on FTP

    I just want to be sure what you are asking for here. Do you want to go back to the FTP server you downloaded the file from and move...

  • RE: Update with cursors

    No, no cursor necessary, but as Sean pointed out we need the DDL for the table, sample data for the table, expected results when all is done. It would...

  • RE: UNIQUE NOT NULL vs PRIMARY KEY

    deepikamm (3/6/2012)


    Please do not comment without knowing the fact that whether i have googled or not.

    i thought that the experts in sqlservercentral would give me a better clear answer thats...

  • RE: how to print all the column names with in a table in one row from sys table without pivot

    vijayangk (3/6/2012)


    Is it Possible to Print the column list in different column

    Not sure what you are asking. Could you explain this a little better, perhaps show us what you...

  • RE: Problem to write Special Function

    The only other thing to realize is that you aren't going to be able to generate guids (uniqueidentifiers) in a sequence using SQL Server 2000.

    If you need a sequence, you...

  • RE: Multiple count() in a single SQL

    With this, below, I have to agree with Jared. It tells us that you are unwilling or unable to question your own processes. That even if shown a...

  • RE: Large table cleanup with minimal locks

    You can also check out this article, it may help with some ideas:

    Deleting Large Number of Records

    [/url]

Viewing 15 posts - 13,891 through 13,905 (of 26,486 total)