Viewing 15 posts - 19,786 through 19,800 (of 22,202 total)
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.
August 7, 2008 at 6:10 am
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...
August 7, 2008 at 5:32 am
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...
August 7, 2008 at 5:27 am
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...
August 6, 2008 at 11:06 am
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...
August 6, 2008 at 11:02 am
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...
August 6, 2008 at 11:00 am
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...
August 6, 2008 at 10:56 am
Unwise, poorly worded, incomplete, untested, filled with mistakes, rebuttal!
August 6, 2008 at 6:01 am
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...
August 6, 2008 at 5:50 am
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...
August 2, 2008 at 3:06 pm
Marios Philippopoulos (8/2/2008)
Grant Fritchey (8/2/2008)
August 2, 2008 at 11:15 am
It heppens to us all. That second set of eyes can work wonders sometimes.
August 2, 2008 at 11:13 am
The thing to remember is, to all intents and purposes, the clustered index, is the table.
August 2, 2008 at 3:46 am
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.' +...
August 2, 2008 at 3:42 am
Viewing 15 posts - 19,786 through 19,800 (of 22,202 total)