Viewing 14 posts - 1 through 14 (of 14 total)
If you don't know exactly what kind of deadlock you are getting set up a Server Side Trace for Deadlock graph event and find out.
In your situation the deadlock may...
April 7, 2015 at 1:28 am
GSquared (7/19/2012)
seregak76 (7/19/2012)
GSquared (7/16/2012)
July 19, 2012 at 7:46 am
TheSQLGuru (7/17/2012)
get sp_whoisactive from SQLBlog.com (v11.11 is latest last I heard) and use that to get all KINDS of important information about executions on your sql server
Thanks, I looked at...
July 19, 2012 at 7:26 am
GSquared (7/16/2012)
July 19, 2012 at 6:50 am
Thanks for clarification, I got it.
This SPID get stuck forever unless i rebuild statistics and this is hard to explain if there is no CPU contention.
I need to see what...
July 16, 2012 at 9:23 am
Thanks GSquared. Now my question is why a process gets stuck in status runnable for a long time? It does not wait for any locks to be released.
July 16, 2012 at 8:40 am
Your change to use DATEDIFF function will make your qury miss the index on adddatetime.
March 13, 2012 at 12:15 pm
I totally agree with Jared about changing the purge method. You don't have many choices when dealing with such big volumes. The good news is that your clustered index is...
September 28, 2011 at 3:41 pm
Hi,
It seems to me that you passed the threshold where GHOST CLEANUP process can keep up with your deletion rate. Can this be the case here?
September 28, 2011 at 2:37 am
Thanks everybody!
I got it sorted out. Some times the ' leaf_delete_count' does not match amount of deletes. The rest of deletes are reflected in 'leaf_ghost_count' so I can...
August 24, 2011 at 7:40 am
Thanks!
I increased the amount of rows in my test case and still no luck. Any other ideas?
SET NOCOUNT ON
IF OBJECT_ID('t1', 'U') IS NOT NULL DROP TABLE t1
CREATE TABLE t1 (a...
August 24, 2011 at 5:04 am
Hi!
I run the trace for Dedlock graph that can give you all information about the deadlocks on server. I start the trace when SQL Server Agent starts and I never...
July 1, 2011 at 1:42 am
I've implemented updlock as you suggest in your comment and I encountered duplicates that occur very rarely, and not every time when I run tests with many concurrent...
March 8, 2011 at 1:39 am
it is not completely true. Although it says in BOL: "At the beginning of a connection, this setting has a value of -1. After it is changed, the new setting...
February 2, 2011 at 7:39 am
Viewing 14 posts - 1 through 14 (of 14 total)