MS SQL Deadlocks
MS SQL Deadlocks
I have an installation that is suffering from occasional deadlocks which are extremely difficult to predict or debug. While this may simply be unavoidable, I am curious if anyone that has experienced similar problems can provide any suggestions how to resolve this situation.
Please check if you are using FetchAll=False mode with DbxSda. This may be the reason of the deadlock. By default, the FetchAll parameter value is True. You can find the information on how to change this option in the ReadMe.html file. Changing the FetchAll parameter to True should solve the problem.
The only DbxSda specific mode that can cause deadlocks is FetchAll = False mode.
So, if you use FetchAll = True mode, please see "Deadlocking" in SQL Server 2005 Books Online: http://msdn2.microsoft.com/en-us/ms177433.aspx.
So, if you use FetchAll = True mode, please see "Deadlocking" in SQL Server 2005 Books Online: http://msdn2.microsoft.com/en-us/ms177433.aspx.