使用 rowcount 删除查询时陷入死锁

发布于 2024-12-18 13:16:21 字数 277 浏览 2 评论 0原文

Set rowcount 50000
declare @i int 
select @i = 1 
 WHILE ( @i > 0 )
    BEGIN
    DELETE table1
    FROM table1 (index index1)
    WHERE
    HIST_Timestamp < '2011/11/26'
    select @i = @@rowcount
    END

查询有时会遇到死锁情况并终止。无法弄清楚出了什么问题。请帮助我!

Set rowcount 50000
declare @i int 
select @i = 1 
 WHILE ( @i > 0 )
    BEGIN
    DELETE table1
    FROM table1 (index index1)
    WHERE
    HIST_Timestamp < '2011/11/26'
    select @i = @@rowcount
    END

The query sometimes encounters a deadlock situation and terminates.. Not able to figure out what is going wrong .. Please help me!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情愿 2024-12-25 13:16:21

当事务A锁定一条记录然后必须等待事务B解锁一条记录,而事务B正在等待事务A已经锁定的记录时,就会发生死锁。

如果你真的想知道为什么会发生死锁,你可以这样做用这个命令:
sp_configure "print deadlock information", 1

为查询创建有用的索引允许delete语句使用页锁或行锁,从而提高并发访问到桌子上。如果无法为删除事务创建索引,可以在游标中执行操作,并频繁使用提交事务语句来减少页锁的数量。

A deadlock occurs when transaction A locks a record then has to wait for transaction B to unlock a record, while transaction B is waiting on a record already locked by transaction A.

If you really want to know why the deadlock is happening, you can do it with this command:
sp_configure "print deadlock information", 1

Creating a useful index for the query allows the delete statement to use page or row locks, improving concurrent access to the table. If creating an index for the delete transaction is not possible, you can perform the operation in a cursor, with frequent commit transaction statements to reduce the number of page locks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文