Top "Deadlock" questions

Situation where two (or more) operations need overlapping sets of resources, and neither can complete because they cannot obtain all locks necessary to complete an operation and release their locks.

Deadlock troubleshooting in Sql Server 2008

My website doesn't seem to handle a high number of visitors, I believe it's because the server is too simple. 2 …

sql-server-2008 deadlock
What are common reasons for deadlocks?

Deadlocks are hard to find and very uncomfortable to remove. How can I find error sources for deadlocks in my …

deadlock
How do I kill a transaction in MySql as root?

I’m using MySql 5.5.37. As root, I’m trying to kill a transaction that’s locking some tables. I run …

mysql transactions root deadlock kill
How to find out deadlock and prevent it in C#

I had an interview just 5 minutes back, I didn't answer 3 questions, could someone please help me. Question: How to look …

c# asp.net .net c#-4.0 deadlock
Diagnosing Deadlocks in SQL Server 2005

We're seeing some pernicious, but rare, deadlock conditions in the Stack Overflow SQL Server 2005 database. I attached the profiler, set …

sql-server sql-server-2005 deadlock
Re-entrant locks in C#

Will the following code result in a deadlock using C# on .NET? class MyClass { private object lockObj = new object(); public …

c# .net multithreading locking deadlock
Sample code to illustrate a deadlock by using lock(this)

I've read several articles and posts that say that lock(this), lock(typeof(MyType)), lock("a string") are all bad …

c# .net multithreading deadlock
What does "lock | communication buffer resources" mean?

I have an error log which reports a deadlock: Transaction (Process ID 55) was deadlocked on lock | communication buffer resources with …

sql-server sql-server-2008 deadlock database-deadlocks
Detecting deadlocks in a C# application

Possible Duplicate: C#/.NET analysis tool to find race conditions/deadlocks I am debugging an application that I suspect is …

c# multithreading deadlock
How to simulate a deadlock in SQL Server in a single process?

Our client side code detects deadlocks, waits for an interval, then retries the request up to 5 times. The retry logic …

sql sql-server unit-testing deadlock raiserror