Statistics refers to the statistical information about the distribution of values in one or more columns of a table or an index. The
SQL Server Query Optimizer uses this statistical information to estimate the cardinality, or number of rows, in the query result
to be returned, which enables the SQL Server Query Optimizer to create a high-quality query execution plan. For example, based
on these statistical information SQL Server Query Optimizer might decide whether to use the index seek operator or a more
resource-intensive index scan operator in order to provide optimal query performance. In this article series, I am going to talk
about statistics in detail.
Submitted questions and answers are subject to review and editing, and may or may not be selected for posting, at the sole discretion of w3Sniff.
Get Started
Comments
Leave a Comment