Viewing 15 posts - 1,216 through 1,230 (of 1,479 total)
GilaMonster (1/15/2009)
Grant Fritchey (1/15/2009)
For example, oh Gail, how many swords in your house?
Only one at the moment. I'm considering buying a basket-hilt rapier (local weapons shop has a nice...
January 16, 2009 at 4:53 am
It seems that the server replaces the derived table with the real table. I wrote a small script and got the same error as you got. You can...
January 14, 2009 at 1:49 pm
noeld (1/14/2009)
January 14, 2009 at 12:59 pm
DavidB (1/14/2009)
Just a note from BOL;"Rebuilding a clustered index does not rebuild associated nonclustered indexes unless the keyword ALL is specified."
We were not talking about rebuilding the clustered index....
January 14, 2009 at 10:13 am
DBA (1/14/2009)
January 14, 2009 at 9:43 am
SimonD (1/14/2009)
January 14, 2009 at 9:19 am
The problem is because the check constraint is checked after the insert. At that time it finds a record in the table and rollback the transaction. You’ll need...
January 14, 2009 at 8:03 am
Few years ago I wrote a script with vbscript that opened the packages then looped through the package’s object and for every connection object that was found, it checked if...
January 14, 2009 at 1:32 am
You can define the trace using the profiler in the regular way. After you define it, you can export the trace’s definition to a text file by going to...
January 13, 2009 at 6:38 am
Let’s try to figure out why there are different query plans. Are there any different set options that are being used when you query the database in the second...
January 12, 2009 at 4:55 am
Do you have the same query plan in both servers? Are there problems with other databases on the second server? Is there any modification with the workload on...
January 12, 2009 at 4:37 am
You can not use the row_number function in the where clause, so you need to work with common table expression that uses row_number function in the select list and then...
January 12, 2009 at 3:10 am
Here is another way of getting the beginning and end of a sequence. The downside of this way is that it assumes that there are no gaps in the...
January 12, 2009 at 3:02 am
You can identify rows with primary key or with another unique value in the table. What do you mean by saying odd records? Do you mean according to...
January 12, 2009 at 1:25 am
Viewing 15 posts - 1,216 through 1,230 (of 1,479 total)