SQL Server 优化排序的规则?

发布于 2024-11-19 08:30:06 字数 170 浏览 0 评论 0原文

我有一个复杂的 MSSQL 2008 查询,显示计划的 40% 工作在排序操作中(有几百万行,查询执行前 15000 行),计划的其余部分是索引查找和扫描。

如果我删除 TOP 子句,查询将缩短至一秒。但我需要TOP。巧妙地优化这种排序需求的经验法则是什么?

I have a convoluted MSSQL 2008 query, and the show plan has 40% of the work in a sort operation (there are several mil rows and the query does a top 15000), the rest of the plan is index seeks and scans.

If I remove the TOP clause, the query goes down to a second. But I need the TOP. What are some rules of thumb for smartly optimizing this SORT need?

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

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

发布评论

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

评论(1

遇到 2024-11-26 08:30:06

您排序的所有列都应该建立索引。仅此一项就应该减少 SQL Server 在执行查询时花费时间进行排序的需要(因为它们已经通过索引进行排序)。

唯一的缺点是索引越多 = 插入速度越慢。

All of the columns you sort on should be indexed. This alone shoud decrease the need for SQL Server to spend time sorting while executing the query (because they will already be sorted via the index)

The only downside is that more indexes = slower inserts.

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