Viewing 15 posts - 19,006 through 19,020 (of 22,202 total)
Can you generate and post a couple of execution plans? That will help show what's happening under the covers on your system, with your data.
This will help if you haven't...
December 17, 2008 at 8:27 am
Personally, C#. It's what all the cool kids seem to be doing these days, so it's more likely to allow you get jobs and/or recruit people into the jobs you...
December 17, 2008 at 8:23 am
Fraggle (12/17/2008)
Gail, are there any articles you would recommend on using server side traces?
Grant, you are correct. I did fail to mention...
December 17, 2008 at 7:33 am
Google & BOL aside, they've managed to find their way to this site, navigate to the forums, type their question.... Didn't even a one of them look up & to...
December 17, 2008 at 7:26 am
Yeah, Ian, that sounds like a good approach. I was thinking more or less the same thing, but didn't put in as clear as manner as you just did.
December 17, 2008 at 7:14 am
OK. Now that I'm seeing the full graph at last, I'll sound a little less foolish (but only a little). I'm seeing you running two updates, in different orders, the...
December 17, 2008 at 7:12 am
Ah sorry, different issue, different post. My mistake.
BTW, it's always helpful, but hardly necessary, that if you answer a question you posted, go ahead and post the answer. It'll not...
December 17, 2008 at 6:43 am
I don't have the answer, but you might want to post the question over in the 2008 forum. If people aren't monitoring both, they may not see this.
December 17, 2008 at 6:37 am
Also, if this question is related to this post:
http://www.sqlservercentral.com/Forums/Topic621088-145-1.aspx
You really shouldn't post multiple times because it just diffuses the conversation, making it harder for people to help and duplicating effort.
December 17, 2008 at 6:22 am
Simply updating 46 columns should not cause a deadlock. This would cause blocking, as one resource would have to wait on another while it's update completed. You have other processes...
December 17, 2008 at 6:21 am
Are these queries part of a bigger set of commands? Nothing there indicates why you'd receive a deadlock. You need to look at the statements prior to these two to...
December 17, 2008 at 6:18 am
Or edit the post... that works too.
December 17, 2008 at 6:14 am
Most of it is not displaying. You should try zipping it up and posting it as an attachment.
December 17, 2008 at 6:13 am
To add to what Gail says, I'd also suggest, that when you're not troubleshooting deadlocks, capturing the Start command is unnecessary. Usually getting RPCComplete and SQLBatchComplete covers just about everything...
December 17, 2008 at 6:12 am
You can use the OR construct or even COALESCE
WHERE SomeValue = COALESCE(@Param,SomeValue)
But the OR constract and the COALESCE construct aren't going to perform terribly well because either one will cause...
December 17, 2008 at 6:03 am
Viewing 15 posts - 19,006 through 19,020 (of 22,202 total)