T-Sql - SQL Server 2008
我们如何找到 select 语句的成本以及如何提高语句的性能
how can we find the cost of a select statement and how can we improve the performance of a statement
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用查询的执行计划来查看成本在哪里,以便您可以针对特定领域进行改进。
关于这个主题有很多书,它相当大,所以对于如此广泛的问题只能给出肤浅的答案。
从这篇文章开始 - 第 1 部分 和 第 2 部分 来自 Simple Talk(查找 SQL Server 性能不佳的原因)。
You use the execution plans for the query to see where the costs are so you can target specific areas for improvement.
There are whole books written on this subject, it is rather large so nothing short of a superficial answer can be given for such a broad question.
Start with this article - part1 and part2 from Simple Talk (Finding the Causes of Poor Performance in SQL Server).