TransactionScope 和存储过程中的死锁
我有一个 sproc
,基本上是这样的:
begin transaction
SELECT
UPDATE
INSERT
commit transaction
这个 sproc
在我的应用程序中的两个不同线程的循环内调用,两个线程都在 TransactionScope
内使用默认选项。
有时,我的应用程序会陷入僵局:
“事务(进程 ID 184)在锁资源上与另一个进程发生死锁,并已被选为死锁牺牲品。重新运行该事务。”
我能做些什么吗?我应该使用不同的隔离级别吗?
I've got a sproc
that basically goes:
begin transaction
SELECT
UPDATE
INSERT
commit transaction
This sproc
is called inside a loop from two different threads in my application, both within a TransactionScope
with default options.
Occasionally, my application deadlocks:
"Transaction (Process ID 184) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction."
Is there anything I can do about this? Should I use a different isolation level?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TransactionScope 使用的默认隔离级别是 Serialized,这通常是不必要的。使用构造函数,它接受TransactionOptions 指定其他级别。
基于 David Baxter Browne(一篇描述这个问题的精彩博客文章)。
Default isolation level used by TransactionScope is Serializable which usually is unnecessary. Use a constructor which takes TransactionOptions to specify other level.
Example based on blog post from David Baxter Browne (a great blog post describing this problem).