Viewing 15 posts - 5,836 through 5,850 (of 6,678 total)
Maybe this will show you what is actually happening:
If object_id('tempdb..#TestReplace') Is Not Null
Begin;
Drop Table #TestReplace;
End;
Select...
December 15, 2008 at 4:15 pm
GilaMonster (12/15/2008)
Ok...... Never seen that before.If it's stack dumping, you need to call customer support.
Yeah, that is what I figured was going to happen. For the short term, I...
December 15, 2008 at 1:56 pm
For anybody who is interested, setting MAXDOP to 1 allowed the process to complete successfully, even with ONLINE=ON.
So, it definitely looks like an issue with parallelism on this index. ...
December 15, 2008 at 1:48 pm
GilaMonster (12/15/2008)
By unrecoverable, do you mean the deadlock detector's not picking it up? Does having traceflag 1222 on result in a deadlock graph in the error log?
By unrecoverable, I mean...
December 15, 2008 at 1:43 pm
Thanks - that is what I was afraid of. I guess we are going to open a ticket with Microsoft.
December 15, 2008 at 1:37 pm
Well, I guess the answer is: It depends :hehe:
Do you want to slow down your inserts/deletes? If so, then yeah - you probably want to add some indexes. ...
December 14, 2008 at 10:21 pm
No, you are not going to be able to do that. What you will need to do is build the cluster, install SQL Server on the cluster and then...
December 12, 2008 at 4:25 pm
Everything looks right - don't see anything that jumps out and says there might be a problem with the cluster setup.
Sorry, I can't think of anything else to look at.
December 12, 2008 at 3:48 pm
You can use sp_notify_operator:
sp_notify_operator
[ @profile_name = ] 'profilename' ,
[ @id = ] id ,
[ @name = ] 'name'...
December 12, 2008 at 2:06 pm
Okay - that makes sense. I did not see the other replies before I sent mine. I agree with Steve, you really should be looking at setting up...
December 12, 2008 at 1:07 pm
Why are you remoting into the server to run these queries? You should use SSMS on your local workstation instead.
I would be very concerned about moving temp files used...
December 12, 2008 at 12:53 pm
The semi-colon is a statement terminator, so you wouldn't put it at the end of every line. Only at the end of each statement - and only before the...
December 12, 2008 at 12:29 pm
Garadin (12/12/2008)
December 12, 2008 at 12:16 pm
Christopher Stobbs (12/11/2008)
but I must say sorry I don't know how the hanging ) stayed as it did.
...
December 12, 2008 at 12:12 pm
Well, to be perfectly honest I am now at a complete loss. You really should be able to see that database being started by SQL Server. It really...
December 12, 2008 at 11:37 am
Viewing 15 posts - 5,836 through 5,850 (of 6,678 total)