SQL Server 优化排序的规则?
我有一个复杂的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您排序的所有列都应该建立索引。仅此一项就应该减少 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.