Diagnosing Deadlocks in SQL Server 2005 - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T23:17:40Zhttp://stackoverflow.com/feeds/question/20047http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-200541Diagnosing Deadlocks in SQL Server 2005Jeff Atwood2008-08-21T14:18:41Z2009-05-15T19:37:19Z
<p>We're seeing some pernicious, but rare, deadlock conditions in the Stack Overflow SQL Server 2005 database.</p>
<p>I attached the profiler, set up a trace profile using <a href="http://www.simple-talk.com/sql/learn-sql-server/how-to-track-down-deadlocks-using-sql-server-2005-profiler/" rel="nofollow">this excellent article on troubleshooting deadlocks</a>, and captured a bunch of examples. The weird thing is that <strong>the deadlocking write is <em>always</em> the same</strong>:</p>
<pre><code>UPDATE [dbo].[Posts]
SET [AnswerCount] = @p1, [LastActivityDate] = @p2, [LastActivityUserId] = @p3
WHERE [Id] = @p0
</code></pre>
<p>The other deadlocking statement varies, but it's usually some kind of trivial, simple <strong>read</strong> of the posts table. This one always gets killed in the deadlock. Here's an example</p>
<pre><code>SELECT
[t0].[Id], [t0].[PostTypeId], [t0].[Score], [t0].[Views], [t0].[AnswerCount],
[t0].[AcceptedAnswerId], [t0].[IsLocked], [t0].[IsLockedEdit], [t0].[ParentId],
[t0].[CurrentRevisionId], [t0].[FirstRevisionId], [t0].[LockedReason],
[t0].[LastActivityDate], [t0].[LastActivityUserId]
FROM [dbo].[Posts] AS [t0]
WHERE [t0].[ParentId] = @p0
</code></pre>
<p>To be perfectly clear, we are not seeing write / write deadlocks, but read / write.</p>
<p>We have a mixture of LINQ and parameterized SQL queries at the moment. We have added <code>with (nolock)</code> to all the SQL queries. This may have helped some. We also had a single (very) poorly-written badge query that I fixed yesterday, which was taking upwards of 20 seconds to run every time, and was running every minute on top of that. I was hoping this was the source of some of the locking problems!</p>
<p>Unfortunately, I got another deadlock error about 2 hours ago. Same exact symptoms, same exact culprit write.</p>
<p>The truly strange thing is that the locking write SQL statement you see above is part of a very specific code path. It's <em>only</em> executed when a new answer is added to a question -- it updates the parent question with the new answer count and last date/user. This is, obviously, not that common relative to the massive number of reads we are doing! As far as I can tell, we're not doing huge numbers of writes anywhere in the app.</p>
<p>I realize that NOLOCK is sort of a giant hammer, but most of the queries we run here don't need to be that accurate. Will you care if your user profile is a few seconds out of date?</p>
<p>Using NOLOCK with Linq is a bit more difficult as <a href="http://www.hanselman.com/blog/GettingLINQToSQLAndLINQToEntitiesToUseNOLOCK.aspx" rel="nofollow">Scott Hanselman discusses here</a>.</p>
<p>We are flirting with the idea of using</p>
<pre><code>SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
</code></pre>
<p>on the base database context so that all our LINQ queries have this set. Without that, we'd have to wrap every LINQ call we make (well, the simple reading ones, which is the vast majority of them) in a 3-4 line transaction code block, which is ugly.</p>
<p>I guess I'm a little frustrated that trivial reads in SQL 2005 can deadlock on writes. I could see write/write deadlocks being a huge issue, but <em>reads?</em> We're not running a banking site here, we don't need perfect accuracy every time.</p>
<p>Ideas? Thoughts?</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20056#200567Answer by Greg Hurlman for Diagnosing Deadlocks in SQL Server 2005Greg Hurlman2008-08-21T14:22:43Z2008-08-21T14:22:43Z<blockquote>
<p>Will you care if your user profile is a few seconds out of date?</p>
</blockquote>
<p>Nope - that's perfectly acceptable. Setting the base transaction isolation level is probably the best/cleanest way to go.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20094#200940Answer by GateKiller for Diagnosing Deadlocks in SQL Server 2005GateKiller2008-08-21T14:33:57Z2008-08-21T14:33:57Z<p>I would have to agree with Greg so long as setting the isolation level to read uncommitted doesn't have any ill effects on other queries.</p>
<p>I'd be interested to know, Jeff, how setting it at the database level would affect a query such as the following:</p>
<pre><code>Begin Tran
Insert into Table (Columns) Values (Values)
Select Max(ID) From Table
Commit Tran
</code></pre>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20101#2010111Answer by codeflunky for Diagnosing Deadlocks in SQL Server 2005codeflunky2008-08-21T14:35:41Z2008-08-21T14:35:41Z<p>Are you instantiating a new LINQ to SQL DataContext object for every operation or are you perhaps sharing the same static context for all your calls? I originally tried the latter approach, and from what I remember, it caused unwanted locking in the DB. I now create a new context for every atomic operation.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20105#201051Answer by a_hardin for Diagnosing Deadlocks in SQL Server 2005a_hardin2008-08-21T14:36:37Z2008-08-21T14:36:37Z<blockquote>
<p>Will you care if your user profile is a few seconds out of date?</p>
</blockquote>
<p>A few seconds would definitely be acceptable. It doesn't seem like it would be that long, anyways, unless a huge number of people are submitting answers at the same time.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20121#201212Answer by Jeff Atwood for Diagnosing Deadlocks in SQL Server 2005Jeff Atwood2008-08-21T14:39:47Z2008-08-21T14:39:47Z<blockquote>
<p>Are you instantiating a new LINQ to SQL DataContext object for every operation or are you perhaps sharing the same static context for all your calls?</p>
</blockquote>
<p>Jeremy, we are sharing one static datacontext in the base Controller for the most part:</p>
<pre><code>private DBContext _db;
/// <summary>
/// Gets the DataContext to be used by a Request's controllers.
/// </summary>
public DBContext DB
{
get
{
if (_db == null)
{
_db = new DBContext() { SessionName = GetType().Name };
//_db.ExecuteCommand("SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED");
}
return _db;
}
}
</code></pre>
<p>Do you recommend we create a new context for every Controller, or per Page, or .. more often?</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20136#201363Answer by John Siracusa for Diagnosing Deadlocks in SQL Server 2005John Siracusa2008-08-21T14:45:40Z2008-08-21T14:45:40Z<p>What <a href="http://en.wikipedia.org/wiki/Microsoft_SQL_Server#Concurrency_and_locking" rel="nofollow">concurrency mode</a> are you using, "pessimistic" (lock-based) or "optimistic" (<a href="http://en.wikipedia.org/wiki/Multiversion_concurrency_control" rel="nofollow">MVCC</a>-ish)?</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20143#201430Answer by bruceatk for Diagnosing Deadlocks in SQL Server 2005bruceatk2008-08-21T14:48:35Z2008-08-21T14:48:35Z<p>It's fine with me if my profile is even several minutes out of date.</p>
<p>Are you re-trying the read after it fails? It's certainly possible when firing a ton of random reads that a few will hit when they can't read. Most of the applications that I work with are very few writes compared to the number of reads and I'm sure the reads are no where near the number you are getting.</p>
<p>If implementing "READ UNCOMMITTED" doesn't solve your problem, then it's tough to help without knowing a lot more about the processing. There may be some other tuning option that would help this behavior. Unless some MSSQL guru comes to the rescue, I recommend submitting the problem to the vendor. </p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20147#201473Answer by codeflunky for Diagnosing Deadlocks in SQL Server 2005codeflunky2008-08-21T14:50:34Z2008-08-21T15:22:45Z<p>@Jeff - I am definitely not an expert on this, but I have had good results with instantiating a new context on almost every call. I think it's similar to creating a new Connection object on every call with ADO. The overhead isn't as bad as you would think, since connection pooling will still be used anyway.</p>
<p>I just use a global static helper like this:</p>
<pre><code>public static class AppData
{
/// <summary>
/// Gets a new database context
/// </summary>
public static CoreDataContext DB
{
get
{
var dataContext = new CoreDataContext
{
DeferredLoadingEnabled = true
};
return dataContext;
}
}
}
</code></pre>
<p>and then I do something like this:</p>
<pre><code>var db = AppData.DB;
var results = from p in db.Posts where p.ID = id select p;
</code></pre>
<p>And I would do the same thing for updates. Anyway, I don't have nearly as much traffic as you, but I was definitely getting some locking when I used a shared DataContext early on with just a handful of users. No guarantees, but it might be worth giving a try.</p>
<p><strong>Update</strong>: Then again, looking at your code, you are only sharing the data context for the lifetime of that particular controller instance, which basically seems fine unless it is somehow getting used concurrently by mutiple calls within the controller. In a thread on the topic, ScottGu said:</p>
<blockquote>
<p>Controllers only live for a single request - so at the end of processing a request they are garbage collected (which means the DataContext is collected)...</p>
</blockquote>
<p>So anyway, that might not be it, but again it's probably worth a try, perhaps in conjunction with some load testing.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20172#201721Answer by Rob G for Diagnosing Deadlocks in SQL Server 2005Rob G2008-08-21T15:02:30Z2008-08-21T15:02:30Z<p>I agree with Jeremy on this one. You ask if you should create a new data context for each controller or per page - I tend to create a new one for every independent query.</p>
<p>I'm building a solution at present which used to implement the static context like you do, and when I threw tons of requests at the beast of a server (million+) during stress tests, I was also getting read/write locks randomly.</p>
<p>As soon as I changed my strategy to use a different data context at LINQ level per query, and trusted that SQL server could work its connection pooling magic, the locks seemed to disappear.</p>
<p>Of course I was under some time pressure, so trying a number of things all around the same time, so I can't be 100% sure that is what fixed it, but I have a high level of confidence - let's put it that way.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20204#202041Answer by Michael Sharek for Diagnosing Deadlocks in SQL Server 2005Michael Sharek2008-08-21T15:16:15Z2008-08-21T15:16:15Z<p>One thing that has worked for me in the past is making sure all my queries and updates access resources (tables) in the same order.</p>
<p>That is, if one query updates in order Table1, Table2 and a different query updates it in order of Table2, Table1 then you might see deadlocks.</p>
<p>Not sure if it's possible for you to change the order of updates since you're using LINQ. But it's something to look at.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20224#2022429Answer by JEzell for Diagnosing Deadlocks in SQL Server 2005JEzell2008-08-21T15:23:10Z2008-11-01T15:36:59Z<p>NOLOCK and READ UNCOMMITTED are a slippery slope. You should never use them unless you understand why the deadlock is happening first. It would worry me that you say, "We have added with (nolock) to all the SQL queries". Needing to add WITH NOLOCK everywhere is a sure sign that you have problems in your data layer. </p>
<p>The update statement itself looks a bit problematic. Do you determine the count earlier in the transaction, or just pull it from an object? AnswerCount = AnswerCount+1 when a question is added is probably a better way to handle this. Then you don't need a transaction to get the correct count and you don't have to worry about the concurrency issue that you are potentially exposing yourself to.</p>
<p>One easy way to get around this type of deadlock issue without a lot of work and without enabling dirty reads is to use "Snapshot Isolation Mode" (new in SQL 2005) which will always give you a clean read of the last unmodified data. You can also catch and retry deadlocked statements fairly easily if you want to handle them gracefully.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20473#204731Answer by Jon Galloway for Diagnosing Deadlocks in SQL Server 2005Jon Galloway2008-08-21T16:40:18Z2008-08-21T16:48:46Z<p>Now that I see Jeremy's answer, I think I remember hearing that the best practice is to use a new DataContext for each data operation. Rob Conery's written several posts about DataContext, and he always news them up rather than using a singleton.</p>
<ul>
<li><a href="http://blog.wekeroad.com/2007/08/17/linqtosql-ranch-dressing-for-your-database-pizza/" rel="nofollow"><a href="http://blog.wekeroad.com/2007/08/17/linqtosql-ranch-dressing-for-your-database-pizza/" rel="nofollow">http://blog.wekeroad.com/2007/08/17/linqtosql-ranch-dressing-for-your-database-pizza/</a></a></li>
<li><a href="http://blog.wekeroad.com/mvc-storefront/mvcstore-part-9/" rel="nofollow"><a href="http://blog.wekeroad.com/mvc-storefront/mvcstore-part-9/" rel="nofollow">http://blog.wekeroad.com/mvc-storefront/mvcstore-part-9/</a></a> (see comments)</li>
</ul>
<p>Here's the pattern we used for Video.Show (<a href="http://www.codeplex.com/videoshow/SourceControl/FileView.aspx?itemId=25033&changeSetId=10876" rel="nofollow">link to source view in CodePlex</a>):</p>
<pre><code>using System.Configuration;
namespace VideoShow.Data
{
public class DataContextFactory
{
public static VideoShowDataContext DataContext()
{
return new VideoShowDataContext(ConfigurationManager.ConnectionStrings["VideoShowConnectionString"].ConnectionString);
}
public static VideoShowDataContext DataContext(string connectionString)
{
return new VideoShowDataContext(connectionString);
}
}
}
</code></pre>
<p>Then at the service level (or even more granular, for updates):</p>
<pre><code>private VideoShowDataContext dataContext = DataContextFactory.DataContext();
public VideoSearchResult GetVideos(int pageSize, int pageNumber, string sortType)
{
var videos =
from video in DataContext.Videos
where video.StatusId == (int)VideoServices.VideoStatus.Complete
orderby video.DatePublished descending
select video;
return GetSearchResult(videos, pageSize, pageNumber);
}
</code></pre>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/20727#207270Answer by Terrapin for Diagnosing Deadlocks in SQL Server 2005Terrapin2008-08-21T18:34:38Z2008-08-21T18:34:38Z<p>You should implement dirty reads.</p>
<pre><code>SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
</code></pre>
<p>If you don't absolutely require perfect transactional integrity with your queries, you should be using dirty reads when accessing tables with high concurrency. I assume your Posts table would be one of those.</p>
<p>This may give you so called "phantom reads", which is when your query acts upon data from a transaction that hasn't been committed.</p>
<blockquote>
<p>We're not running a banking site here, we don't need perfect accuracy every time</p>
</blockquote>
<p>Use dirty reads. You're right in that they won't give you perfect accuracy, but they should clear up your dead locking issues.</p>
<blockquote>
<p>Without that, we'd have to wrap every LINQ call we make (well, the simple reading ones, which is the vast majority of them) in a 3-4 line transaction code block, which is ugly</p>
</blockquote>
<p>If you implement dirty reads on "the base database context", you can always wrap your individual calls using a higher isolation level if you need the transactional integrity.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/21158#2115828Answer by Geoff Dalgas for Diagnosing Deadlocks in SQL Server 2005Geoff Dalgas2008-08-21T20:53:51Z2008-08-22T00:52:22Z<p>According to MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms191242.aspx" rel="nofollow"><a href="http://msdn.microsoft.com/en-us/library/ms191242.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms191242.aspx</a></a></p>
<blockquote>
<p>When either the
READ COMMITTED SNAPSHOT or
ALLOW SNAPSHOT ISOLATION database
options are ON, logical copies
(versions) are maintained for all data
modifications performed in the
database. Every time a row is modified
by a specific transaction, the
instance of the Database Engine stores
a version of the previously committed
image of the row in tempdb. Each
version is marked with the transaction
sequence number of the transaction
that made the change. The versions of
modified rows are chained using a link
list. The newest row value is always
stored in the current database and
chained to the versioned rows stored
in tempdb.</p>
<p>For short-running transactions, a
version of a modified row may get
cached in the buffer pool without
getting written into the disk files of
the tempdb database. If the need for
the versioned row is short-lived, it
will simply get dropped from the
buffer pool and may not necessarily
incur I/O overhead.</p>
</blockquote>
<p>There appears to be a slight performance penalty for the extra overhead, but it may be negligible. We should test to make sure.</p>
<p>Try setting this option and REMOVE all NOLOCKs from code queries unless it’s really necessary. NOLOCKs or using global methods in the database context handler to combat database transaction isolation levels are Band-Aids to the problem. NOLOCKS will mask fundamental issues with our data layer and possibly lead to selecting unreliable data, where automatic select / update row versioning appears to be the solution.</p>
<pre><code>ALTER Database [StackOverflow.Beta] SET READ_COMMITTED_SNAPSHOT ON
</code></pre>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/21438#214381Answer by Eric Z Beard for Diagnosing Deadlocks in SQL Server 2005Eric Z Beard2008-08-21T23:37:14Z2008-08-26T17:14:22Z<p>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 <em>huge</em> load on tempdb.</p>
<p>Here is what you should do: 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. </p>
<p>There are good examples of this technique in Paul Nielson's <a href="http://rads.stackoverflow.com/amzn/click/0764542567" rel="nofollow">Sql Server 2005 Bible</a>.</p>
<p>Here is a quick template that I use:</p>
<pre><code>-- Deadlock retry template
declare @lastError int;
declare @numErrors int;
set @numErrors = 0;
LockTimeoutRetry:
begin try;
-- The query goes here
return; -- this is the normal end of the procedure
end try begin catch
set @lastError=@@error
if @lastError = 1222 or @lastError = 1205 -- Lock timeout or deadlock
begin;
if @numErrors >= 3 -- We hit the retry limit
begin;
raiserror('Could not get a lock after 3 attempts', 16, 1);
return -100;
end;
-- Wait and then try the transaction again
waitfor delay '00:00:00.25';
set @numErrors = @numErrors + 1;
goto LockTimeoutRetry;
end;
-- Some other error occurred
declare @errorMessage nvarchar(4000), @errorSeverity int
select @errorMessage = error_message(),
@errorSeverity = error_severity()
raiserror(@errorMessage, @errorSeverity, 1)
return -100
end catch;
</code></pre>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/21927#219276Answer by Mark Brackett for Diagnosing Deadlocks in SQL Server 2005Mark Brackett2008-08-22T07:24:15Z2008-08-22T07:24:15Z<p>Before burning the house down to catch a fly with NOLOCK all over, you may want to take a look at that deadlock graph you should've captured with Profiler.</p>
<p>Remember that a deadlock requires (at least) 2 locks. Connection 1 has Lock A, wants Lock B - and vice-versa for Connection 2. This is an unsolvable situation, and someone has to give.</p>
<p>What you've shown so far is solved by simple locking, which Sql Server is happy to do all day long.</p>
<p>I suspect you (or LINQ) are starting a transaction with that UPDATE statement in it, and SELECTing some other piece of info before hand. But, you really need to backtrack through the deadlock graph to find the locks <em>held</em> by each thread, and then backtrack through Profiler to find the statements that caused those locks to be granted. </p>
<p>I expect that there's at least 4 statements to complete this puzzle (or a statement that takes multiple locks - perhaps there's a trigger on the Posts table?).</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/22019#220192Answer by Guy for Diagnosing Deadlocks in SQL Server 2005Guy2008-08-22T10:12:06Z2008-08-22T10:21:12Z<p>Q. Why are you storing the <code>AnswerCount</code> in the <code>Posts</code> table in the first place?</p>
<p>An alternative approach is to eliminate the "write back" to the <code>Posts</code> table by not storing the <code>AnswerCount</code> in the table but to dynamically calculate the number of answers to the post as required.</p>
<p>Yes, this will mean you're running an additional query:</p>
<pre><code>SELECT COUNT(*) FROM Answers WHERE post_id = @id
</code></pre>
<p>or more typically (if you're displaying this for the home page):</p>
<pre><code>SELECT p.post_id,
p.<additional post fields>,
a.AnswerCount
FROM Posts p
INNER JOIN AnswersCount_view a
ON <join criteria>
WHERE <home page criteria>
</code></pre>
<p>but this typically results in an <code>INDEX SCAN</code> and may be more efficient in the use of resources than using <code>READ ISOLATION</code>.</p>
<p><em>There's more than one way to skin a cat. Premature de-normalisation of a database schema can introduce scalability issues.</em></p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/26558#265580Answer by John Dyer for Diagnosing Deadlocks in SQL Server 2005John Dyer2008-08-25T18:16:49Z2008-08-25T18:16:49Z<p>So what's the problem with implementing a retry mechanism? There will always be the possibility of a deadlock ocurring so why not have some logic to identify it and just try again? </p>
<p>Won't at least some of the other options introduce performance penalties that are taken all the time when a retry system will kick in rarely? </p>
<p>Also, don't forget some sort of logging when a retry happens so that you don't get into that situation of rare becoming often.</p>
http://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>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/27617#276178Answer by Leon Bambrick for Diagnosing Deadlocks in SQL Server 2005Leon Bambrick2008-08-26T09:20:03Z2008-08-26T09:20:03Z<p>I'm pretty uncomfortable about this question and the attendant answers. There's a lot of "try this magic dust! No that magic dust!"</p>
<p>I can't see anywhere that you've anaylzed the locks that are taken, and determined what exact type of locks are deadlocked.</p>
<p>All you've indicated is that some locks occur -- not what is deadlocking.</p>
<p>In SQL 2005 you can get more info about what locks are being taken out by using:</p>
<p>DBCC TRACEON (1222, -1)</p>
<p>so that when the deadlock occurs you'll have better diagnostics.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/40993#409930Answer by andyp for Diagnosing Deadlocks in SQL Server 2005andyp2008-09-03T01:08:44Z2008-09-03T01:08:44Z<p>I agree with Guy's response <a href="http://beta.stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005#22019" rel="nofollow">above</a> - rather than trying to work around the symptom why not address the underlying causes? Adding the running total of AnswerCount to the Posts table, you've created a potential blocking resource. </p>
<p>Would Jeff like to post his ERD for StackOverflow so folks can critique?</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/75926#759264Answer by mrbd for Diagnosing Deadlocks in SQL Server 2005mrbd2008-09-16T19:19:01Z2008-09-16T19:19:01Z<p>The OP question was to ask why this problem occured. This post hopes to answer that while leaving possible solutions to be worked out by others.</p>
<p>This is probably an index related issue. For example, lets say the table Posts has a non-clustered index X which contains the ParentID and one (or more) of the field(s) being updated (AnswerCount, LastActivityDate, LastActivityUserId).</p>
<p>A deadlock would occur if the SELECT cmd does a shared-read lock on index X to search by the ParentId and then needs to do a shared-read lock on the clustered index to get the remaining columns while the UPDATE cmd does a write-exclusive lock on the clustered index and need to get a write-exclusive lock on index X to update it.</p>
<p>You now have a situation where A locked X and is trying to get Y whereas B locked Y and is trying to get X.</p>
<p>Of course, we'll need the OP to update his posting with more information regarding what indexes are in play to confirm if this is actually the cause.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/192877#1928770Answer by SqlACID for Diagnosing Deadlocks in SQL Server 2005SqlACID2008-10-10T20:07:32Z2008-10-10T20:07:32Z<p>I would continue to tune everything; how are is the disk subsystem performing? What is the average disk queue length? If I/O's are backing up, the real problem might not be these two queries that are deadlocking, it might be another query that is bottlenecking the system; you mentioned a query taking 20 seconds that has been tuned, are there others? </p>
<p>Focus on shortening the long-running queries, I'll bet the deadlock problems will disappear.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/243187#2431870Answer by Roger for Diagnosing Deadlocks in SQL Server 2005Roger2008-10-28T13:00:26Z2008-10-28T13:00:26Z<p>Had the same problem, and cannot use the "IsolationLevel = IsolationLevel.ReadUncommitted" on TransactionScope because the server dont have DTS enabled (!).</p>
<p>Thats what i did with an extension method:</p>
<pre><code>public static void SetNoLock(this MyDataContext myDS)
{
myDS.ExecuteCommand("SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED");
}
</code></pre>
<p>So, for selects who use critical concurrency tables, we enable the "nolock" like this:</p>
<pre><code>using (MyDataContext myDS = new MyDataContext())
{
myDS.SetNoLock();
// var query = from ...my dirty querys here...
}
</code></pre>
<p>Sugestions are welcome!</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/629735#6297352Answer by Neil for Diagnosing Deadlocks in SQL Server 2005Neil2009-03-10T11:22:38Z2009-03-10T11:22:38Z<p>Because your system is so busy and likely has a very high query volume...</p>
<p>Have you tried making sure that multiple queries which join across several tables, <strong><em>join in the same order?</em></strong>. This was an issue that affected SQL 2000 and I'm not certain that its been fixed in SQL 2005</p>
<p>As in query 1 does the following</p>
<pre><code>SELECT a.col1, b.col2
FROM tableA a INNER JOIN
tableB b ON a.col3 = b.col3
</code></pre>
<p>and query 2 does the following</p>
<pre><code>SELECT a.col1, b.col2
FROM tableB b INNER JOIN
tableA a ON a.col3 = b.col3
</code></pre>
<p>Now throw some UPDATE's in the mix that might join in their own different order too.</p>
<p>I understand that you're using LINQ, possibly profile and compare the queries?</p>
<p>If you can't fix that, consider beefing up the database box (more RAM for buffer-cache or faster disks/IO) because the faster the queries get in & out, the less chance that they overlap and deadlock. That wouldn't be the ideal fix, but it might be a quicker temp solution if this starts to hurt you too much.</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/870449#8704490Answer by Remus Rusanu for Diagnosing Deadlocks in SQL Server 2005Remus Rusanu2009-05-15T19:37:19Z2009-05-15T19:37:19Z<p>Typical read/write deadlock comes from index order access. Read (T1) locates the row on index A and then looks up projected column on index B (usually clustered). Write (T2) changes index B (the cluster) then has to update the index A. T1 has S-Lck on A, wants S-Lck on B, T2 has X-Lck on B, wants U-Lck on A. Deadlock, puff. T1 is killed.
This is prevalent in environments with heavy OLTP traffic and just a tad too many indexes :). Solution is to make either the read not have to jump from A to B (ie. included column in A, or remove column from projected list) or T2 not have to jump from B to A (don't update indexed column).
Unfortunately, linq is not your friend here...</p>