Setting your default to read uncommitted is not a good idea. Your will undoubtedly introduce inconsistencies and end up with a problem that is worse than what you have now. Snapshot isolation might work well, but it is a drastic change to the way Sql Server works and puts a *huge* load on tempdb. Here is what you need to do: put the queries in a stored procedure and use try-catch (in T-SQL) to detect the deadlock condition. When it happens, just re-run the query. This is standard database programming practice. It's ugly code, and it's repetitive, but there isn't a better way to get around these problems in a high volume application like this one. There are good examples of this technique in Paul Nielson's [Sql Server 2005 Bible][1]. [1]: http://www.amazon.com/Server-2005-Bible-Paul-Nielsen/dp/0764542567