对非常大的生产表上的索引进行碎片整理

发布于 2024-11-17 05:40:08 字数 135 浏览 4 评论 0原文

我想对一个非常大的生产表上的索引进行碎片整理。该表由客户端使用,停机会产生问题。对此类 SQL Server 表上的索引进行碎片整理的最佳方法是什么?如果我重建索引,它将锁定表。我应该重新组织索引吗?如果我停止该过程,它会回滚吗?或者会从停止的阶段继续吗?

I want to defrag indexes on a very large production table. This table is used by clients and the downtime will create a problem. What is th ebest methid to defrag indexes on such SQL server tables. If I rebuild indexes it will lock table. Should I reorganize indexes. If I stop the process, will it be rolled back? or Will it continue from the stage where it was stopped?

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

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

发布评论

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

评论(1

野稚 2024-11-24 05:40:08

索引碎片整理可以在线运行而无需锁定表,并且“可以恢复”。

在SQL Server企业版中,您还可以在线重建索引(这比索引碎片整理性能更好)

Index defrag can run online without locking the table, and "can be resumed".

In enterpise edition of SQL server you can also rebuild index online (which is better than index defrag for performance)

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