Forum Replies Created

Viewing 15 posts - 19,786 through 19,800 (of 22,202 total)

  • RE: Voilation of primarykeyconstarint,cannot insert duplicate value.

    You may need to post your code because that should work fine. As one of the previous posts said, you may have your PK improperly defined.

  • RE: When will RC1 be available?

    It sure makes the editorial I just read in SQL Server Magazine sound a little weird. He mentions the release "later this year" of 2008. I thought it sounded strange...

  • RE: Private Emails

    Thanks for all the responses.

    I got one yesterday, I think it was maybe the third one I've received over the years (I'm hardly one of the "go-to" guys). It was...

  • RE: When will RC1 be available?

    Cool. Thanks for sharing.

  • RE: Inner Joins:Nested versus cascaded

    Everything the other guys said is 100% accurate, but one other note, you may want to take into account.... With really simple queries like the ones you showed, the optimizer...

  • RE: Automatic Statistics Maintenance - Good or Bad

    I agree with GSquared. Both enabled, everywhere. Also a script that checks indexes and then does a rebuild or reindex based on fragmentation. Also, there is the occasional index or...

  • RE: New Transact-SQL/query techniques of SQL 2005/20

    Or go up to the Search window just about here and type in TSQL and "SQL Server 2008" or "SQL Server 2005." You can filter by article then. There are...

  • RE: When will RC1 be available?

    Last I heard, they were still releasing in August. I haven't seen any definite release dates, but I haven't seen anything that said it was slipping.

    Here's a post from...

  • RE: Test Post

    Unwise, poorly worded, incomplete, untested, filled with mistakes, rebuttal!

  • RE: Beat this - comic relief for the day

    Oooh, that's a lovely one Steve. There's a product to stay away from.

    I'll bet these are the very same developers that are in full-throated howl against using stored procs...

  • RE: Move changes from test to production

    That's a pretty standard approach. Not necessarily the most accurate since you're only capturing what's different, not specifically what needs to be moved. At some point, depending on your development...

  • RE: Suggestion on Updating Statistics

    Marios Philippopoulos (8/2/2008)


    Grant Fritchey (8/2/2008)


    And that's why we've only had to do the FULL SCAN in a few places and on a somewhat irregular basis. Most indexes, most of the...

  • RE: cursor question

    It heppens to us all. That second set of eyes can work wonders sometimes.

  • RE: Clustered Index update

    The thing to remember is, to all intents and purposes, the clustered index, is the table.

  • RE: Create table with table name passed by proc !

    You'll have to use dynamic SQL. Put everything into a string and concatenate the table name.

    Here's an example (uncompiled, so test it):

    DECLARE @mystring nvarchar(max)

    SET @mystring = 'CREATE TABLE dbo.' +...

Viewing 15 posts - 19,786 through 19,800 (of 22,202 total)