User aquinas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T07:55:17Zhttp://stackoverflow.com/feeds/user/2360http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/26621#266213Answer by aquinas for Diagnosing Deadlocks in SQL Server 2005aquinas2008-08-25T18:45:37Z2008-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>