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.
我们运行了 SQL 调优顾问,它生成了一个可能的索引和统计信息列表。什么索引很清楚,但这些“统计数据”对创建也很重要吗?他们究竟是什么(我假设他们收集数据,但谁使用它)?
查询计划器使用统计信息来确定哪种方式是获取结果的最有效方式。
如果没有统计信息,查询计划器只有表布局可用于尝试确定不同操作的成本。通过统计数据,它可以更好地预测成本。