Deadlock is when two transactions block each other trying to acquire locks on resources and the other transaction holds in a conflicting mode. The lock monitor thread is responsible for deadlock detection and initiates periodic searches to identify and resolve deadlocks. The default between deadlocks searches is 5 seconds.

Detection of deadlock occurs on, when search interval decreases to as low as 100ms based on the frequency,  it will alleviate to 5 seconds and it will enter to a lock waits and enter to a deadlock cycle then it will trigger deadlock information.

> Provide process-level information about the task and it is written in ERRORLOG.

Trace Flag 1204 - provides deadlock graph

> RID - row identifier for a single row in a heap

> KEY - index key for a single row in a index

> No transaction can modify data while the shared lock exists.

> Concurrent SELECT operations can read the data

> Locks are released as soon as the read operation completes unless the isolation level is repeatable read or higher or hints are used

> Only one transaction can acquire an update (U) lock at a time.

> Prevents deadlocks caused by lock conversions from a shared (S) lock to an exclusive (X) lock.

> The update (U) lock is converted to an exclusive (X) lock to modify the data

> Concurrent shared (S) locks are allowed

> Prevents access to a resource from concurrent transactions.

> Ensures that multiple changes cannot be made to the same resource at the same time

> Reads can only occur using NOLOCK or read uncommitted, read committed snapshot isolation levels.

> Acquires on higher-level resources to protect locks on lower-level resources

> Prevents transactions from modifying/locking the higher-level resource with an incopatible lock for the lower-level lock being acquired.

Setting a higher DEADLOCK_PRIORITY for important transactions will ensure that those transaction are not selected as the deadlock victim if a deadlock occurs with lower priority session.




All possible solutions:

> Writers won block readers

> Reads won't block writers.