SQL Server Deadlocks
Ideally, despite locks, your database system will allow a lot of users at once, and each transaction will get in, make the change needed, and get out ; but locks mean blocking, and when transactions need to do multiple operations, this can lead to deadlocks.
Read More