show/hide this revision's text 2 added 843 characters in body

Here is what you need to should 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.

Here is a quick template that I use:

-- Deadlock retry templatedeclare @lastError int;declare @numErrors int;set @numErrors = 0;begin try;-- The query goes herereturn; -- this is the normal end of the procedureend 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 -100end catch;
        
show/hide this revision's text 1

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.