码迷,mamicode.com
首页 > 数据库 > 详细

sql server 死锁自动释放

时间:2019-11-04 20:10:50      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:nbsp   adl   code   mic   ons   并发   cancel   ensure   his   

在高并发时数据库发生会死锁,发生死锁后,数据库会自动释放

技术图片

 

 

原文:

When a transaction is chosen as a deadlock victim, SQL Server will rollback the victim‘s transaction which releases locks held by the transaction. This will allow other transactions to proceed.

Unlike blocking, deadlocks do no persist for long periods. If a query times out or an impatient user cancels a blocked query during execution (attention event), no further T-SQL code on the connection is executed, including the CATCH block. The transaction will remain open (with locks held) unless the XACT_ABORT session setting is set. For this reason, I suggest you specify SET XACT_ABORT ON in stored procedures with explicit transactions. See http://weblogs.sqlteam.com/dang/archive/2007/10/20/Use-Caution-with-Explicit-Transactions-in-Stored-Procedures.aspx.

Note that long-term blocking can sometimes lead to deadlocks. To improve concurrency, I suggest you review your query execution plans for query and index tuning opportunies. This will help ensure that only the data actually needed is touched and locked.

sql server 死锁自动释放

标签:nbsp   adl   code   mic   ons   并发   cancel   ensure   his   

原文地址:https://www.cnblogs.com/fishyues/p/11793856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!