我试图了解 SQL Server 执行计划中的物理运算符。这个页面很有帮助:
http://technet.microsoft.com/en-us/library/ms191158.aspx
SSMS 2008 显示了一些在 SSMS 2005 中未显示的物理运算符属性:Estimated Number of Executions
和Number of Executions
。但这些实际上是什么意思,它们与重新绑定和倒带有什么关系?
Estimated Number of Executions
特别有趣,因为它似乎没有存储在 XML 中。那么它是如何计算的呢?似乎等于Estimated Rebinds + Estimated Rewinds + 1.0
。但如果是这样,为什么Number of Executions
不等于Actual Rebinds + Actual Rewinds + 1
?
谢谢。