So as I understand it, SQL deadlocks happen when a SPID is busy processing another query and it can't be bothered to run another one because it's so busy right now. The SQL Server "randomly" picks one of the queries to deadlock out of the resources asked for and fails it out, throwing an exception.
I have an app running ~ 40 instances and a back-end Windows Service, all of which are hitting the same database. I'm looking to reduce deadlocks so I can increase the number of threads I can runs simultaneously.
- Why can't SQL Server just enqueue the new query and run it when it has time and the resources are available? Most of what I'm doing can wait a few seconds on occasion.
- Is there a way to set Transaction Isolation Level globally without having to specify it at the onset of each new connection/session?
deadlockis not correct. Normally SQL Server does let other requests wait. When it kills a query because it detects a deadlock condition it's because the given set of queries cannot complete (ever) and someone has to lose. I think if you do a little reading on what deadlocks are, you'll be in a much better position to get value out of a better question – Michael Haren Jul 21 '11 at 19:11