From a .NET 3.5 / C# app, I would like to catch SqlException but only if it is caused by deadlocks on a SQL Server 2008 instance.
Typical error message is Transaction (Process ID 58) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.
Yet, it does not seem to be a documented error code for this exception.
Filtering exception against the presence of the deadlock keyword in their message seems a very ugly way to achieve this behavior. Does someone know the right way of doing this?
The Microsft SQL Server-specific error code for a deadlock is 1205 so you’d need to handle the SqlException and check for that. So, e.g. if for all other types of SqlException you want the bubble the exception up:
Or, using exception filtering available in C# 6
A handy thing to do to find the actual SQL error code for a given message, is to look in sys.messages in SQL Server.
e.g.
An alternative way to handle deadlocks (from SQL Server 2005 and above), is to do it within a stored procedure using the TRY…CATCH support:
There’s a full example here in MSDN of how to implement deadlock retry logic purely within SQL.