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;
