Questions tagged «database-optimization»

15
SQL中的Delete语句非常慢
我有这样的语句正在超时: DELETE FROM [table] WHERE [COL] IN ( '1', '2', '6', '12', '24', '7', '3', '5') 我尝试一次像这样做一次: DELETE FROM [table] WHERE [COL] IN ( '1' ) 到目前为止,已经到了22分钟,而且还在继续。 该表具有260,000行,为四列。 有谁知道为什么会这么慢以及如何加快速度?我在[WOL]上确实有一个非唯一,非聚集的索引,我正在其中进行操作。我正在使用SQL Server 2008 R2 更新:我桌上没有触发器。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.