Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我让开发人员抱怨他们的报告运行速度非常慢,当我运行 sp_who2 并运行 SQL Profiler 时,它表明某些系统查询导致了很多阻塞。我现在该如何解决这个问题?有人可以给我想法。
谢谢,
原因:
许多 SQL 作业在您提取数据的 SQL Server 中运行
查询不是优化
解决方案 :
停止在您不使用的 SQL Server 中运行的 SQL 作业
优化您的 SP 中的查询,使其更快并使用 CTE。
问候