Fixing Locking and Blocking Issues in SQL Server - Part 4 - Deadlocks
This is part 4 in a series of posts:
- Part 1 covered being sure there is a locking and blocking issue
- Part 2 covered the impact of RCSI
- Part 3 looked at the impacts of indexing on locking and blocking
Today, though, I want to look at the next potential issue, and that’s deadlocks.
Deadlocks
I often hear people interchangeably using the words lock, block, and deadlock.
Locks are a standard feature of systems that are designed for concurrency. Nothing nasty to see here. When they become a problem is in two situations:
2019-05-09