Joined: Wed Dec 03, 2003 1:34 pm Posts: 9
|
SQL server logs deadlocks in its error logs, but it doesn't do it at row level. There is no way in SQL Server to explicitly end a deadlock (other than bouncing the server ). SQL Server is supposed to clean these up for you. It does this by identifying and timing the deadlocked thread out. You can decrease the deadlock time out period with sp_configure (with the option "query wait").
(BTW: this isn't really a Hibernate question - you might want to try msdn next time)
|
|