User aquinas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T07:55:17Z http://stackoverflow.com/feeds/user/2360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/26621#26621 3 Answer by aquinas for Diagnosing Deadlocks in SQL Server 2005 aquinas 2008-08-25T18:45:37Z 2008-08-25T18:45:37Z <p>You definitely want READ_COMMITTED_SNAPSHOT set to on, which it is not by default. That gives you MVCC semantics. It's the same thing Oracle uses by default. Having an MVCC database is so incredibly useful, NOT using one is insane. This allows you to run the following inside a transaction:</p> <p>Update USERS Set FirstName = 'foobar'; //decide to sleep for a year.</p> <p>meanwhile without committing the above, everyone can continue to select from that table just fine. If you are not familiar with MVCC, you will be shocked that you were ever able to live without it. Seriously. </p>