Forum Replies Created

Viewing 15 posts - 58,471 through 58,485 (of 59,065 total)

  • RE: Synchronising Databases

    If you truly want to synchronize, why not just generate all the code for sprocs, views, and udf's in Enterprise Manager and let 'er rip?

  • RE: Column data to separate rows

    Ok, then... you ask a question, I bust a hump giving you a pretty good answer... did it work for you or what?

  • 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...

Viewing 15 posts - 58,471 through 58,485 (of 59,065 total)