Hi Tony,

 

That summary will be pretty close to the mark.

 

What’s the index that was added though?

 

Adding an index can lead to deadlocks, as it’s another object that needs to be updated when the data is updated.

 

Few questions though:

 

 

We often get called in with customers who have “blocking” problems. Invariably they have a bunch of deadlocks. 99% of those disappear with appropriate indexing to make the queries run fast, and by using RCSI where that makes sense.

 

Regards,

 

Greg

 

Dr Greg Low

 

1300SQLSQL (1300 775 775) office | +61 419201410 mobile

SQL Down Under | Web: https://sqldownunder.com | About Greg:  https://about.me/greg.low

 

From: Tony Wright via ozdotnet <ozdotnet@ozdotnet.com>
Sent: Wednesday, 12 October 2022 9:22 AM
To: ozDotNet <ozdotnet@ozdotnet.com>
Cc: Tony Wright <tonywr71@gmail.com>
Subject: Resolving a SQL server deadlock

 

Hi there,

 

I am currently trying to resolve a sql server deadlock issue. Someone in the team is adamant that the deadlock is caused by a new index we've added. I'm not sure I've ever heard of an index causing a deadlock, but I'm always interested in something new to me, anyway! I have attached a deadlock graph from SolarWinds Sql Sentry Plan Explorer and I'm hoping someone else can help me understand it.

 

There are essentially 2 queries. (I've renamed all objects)

The first query is along the lines of:

 

SELECT DISTINCT * 

FROM dbo.Shipping 

WHERE StatusID=@StatusID 

AND IsLocked=@IsLocked AND TypeID=@TypeID AND ShipDate < @ShipDate. 

 

The field list is expanded and there are lots of fields. It was generated inside a third party tool.

 

The second query is an UPDATE statement in a stored proc, along the lines of:

UPDATE dbo.Shipping 

SET IsLocked=@IsLocked, 

LockedBy=CASE WHEN @Locked=1 THEN @PersonWhoLocked ELSE NULL END, 

LockedDate=CASE WHEN @Locked=1 THEN GetUtcDate() ELSE ModificationDate END

WHERE ShippingID=@ShippingID

 

Process 1 (126) is the SELECT, which is the deadlock victim

Process 2 (133) is the UPDATE stored proc

Process 3 (139) is the UPDATE stored proc

 

I'm going to take a stab at what might be happening. Hopefully someone can fill the gaps in my knowledge.

 

A deadlock occurs when Process A has a lock on Resource 1 and wants to acquire a lock on Resource 2, while Process B has a lock on Resource 2 and wants to acquire a lock on Resource 1. 

 

So reading this graph, it looks like:

 

The 2 resources are the Page Lock on dbo.Shipping, and the Key Lock on the shipping Primary Key. 

 

So on the graph it looks to me like Process 1 holds a lock on the Page Lock resource and wants a lock on the Key Lock. Process 3 holds a lock on the Key lock resource and wants a lock on the Page Lock resource

 

So:

(1) The SELECT occurs on the shipping table and it takes a Page lock (S)

(2) The first UPDATE occurs (133) and that requires an exclusive lock, but it can't get it because there's already a Shared lock, so it puts in an Intent to get an Exclusive lock (IX)

(3) The second UPDATE occurs and it acquires an Exclusive lock (X) on the Primary Key Index. 

(4) Not sure what happens here and how this is relevant

(5) The second UPDATE requests an exclusive lock on the Page of Shipping records.

(6) Meanwhile the SELECT tries to get a Shared lock on one of the keys that are locked by the second UPDATE statement

 

Can anyone help me understand what is going on here and how this is going to help me prevent further deadlocks?

 

Kind regards,

Tony