Forum Replies Created

Viewing 15 posts - 58,456 through 58,470 (of 59,048 total)

  • RE: Text Parsing TSQL code

    Milovan,

    I noticed that all of the other solutions, although well written and functional, contain WHILE loops.  Inherently, WHILE loops are slower than setbased code especially if you have a lot...

  • RE: Bulk Insert flatfile question

    To do this, you will need a BCP format file OR, lose the IDENTITY column.  BCP Format files can actually do all of the parsing in the final format for...

  • RE: Column data to separate rows

    It's easy with a Tally (or Numbers) table...

    --===== This is just part of the test setup...

    --===== If experimental tables exists, drop them

         IF OBJECT_ID('TempDB..#yourtable') IS NOT NULL

            DROP...

  • RE: Question regarding NULLS

    Is is "death by SQL" to change the Server Wide Setting but if you insist on a certain proc being able to evaluate IF NULL=NULL, then you can use SET...

  • RE: best way to copy active table

    Outstanding Gail... I forgot about the batchsize thing... to take that a bit further, I used BCP for a similar requirement with 40 million rows... Using a batch size of...

  • RE: best way to copy active table

    The SELECT/INTO works very fast because the new destination table has no indexes to update and no check constraints. 

    If you add the WITH (NOLOCK) hint to the FROM clause,...

  • RE: Translate this in a stored procedure

    You say 'em, I'll make 'em. What a team!  The neat thing here is that using NEWID as the seed for RAND allows true...

  • RE: Translate this in a stored procedure

    Here's a set-based method...

     SELECT CHAR(RAND(CAST (NEWID() AS VARBINARY))*26+65)

          + CHAR(RAND(CAST (NEWID() AS VARBINARY))*26+65)

          + CHAR(RAND(CAST (NEWID() AS VARBINARY))*26+65)

          + CHAR(RAND(CAST (NEWID() AS VARBINARY))*26+65)

          + CHAR(RAND(CAST (NEWID() AS VARBINARY))*26+65)

          + CHAR(RAND(CAST (NEWID()...

  • RE: regarding missing id records???

    Yeaup!  That's the one!!  You were there, too, Jesper... way too much fun!

  • RE: regarding missing id records???

    Here's one that absolutely rocks!  I don't remember the person who wrote it originally, but the two of us played with it and it generates a list on a million...

  • RE: identity_insert error: could not find database ID

    We call it the "Easy button"...

  • RE: Calculating Work Days

    Thanks Carlos!  Comments like yours make it all worth while!

  • RE: PhoneFormat

    There's a couple hundred different ways of doing this... here's one...

    --For NANPA numbers only...

     CREATE TABLE #example (ID INT IDENTITY(1,1), PhoneNum VARCHAR(15))

     INSERT INTO #example (PhoneNum)

     SELECT '2223334444' UNION...

  • RE: SP - CSV String as input parameter

    Nicely done...

  • RE: Instead of using a parameter twice is it possible using the parameter once?

    Maybe, but the use of the "double parameter" isn't really going to slow anything down here...  I am confused by your posting, though... you say "giving me the first Monday"......

Viewing 15 posts - 58,456 through 58,470 (of 59,048 total)