SQL Server 自動更新統計資訊的基本演算法

來源:互聯網
上載者:User

最初接觸SQL Server的時候認為SQLServer資料更改的同時就會相應的更新統計資料,其實SQL Server不是這樣做的.基於效能考慮,SQL Server使用下面的演算法更新統計資料。

自動更新統計資訊的基本演算法是:

·        如果表格是在 tempdb 資料庫表的基數是小於 6,自動更新到表的每個六個修改。
·        如果表的基數是大於 6,但小於或等於 500,更新狀態每 500 的修改。
·        如果基數大於 500,表為更新統計資料時(500 + 20%的表)發生了更改。
·        表變數為基數的更改不會觸發自動更新統計資訊。

注意:此嚴格意義上講,SQL Server 計算基數為表中的行數。

注意:除了基數,該謂語的選擇性也會影響 AutoStats 產生。這意味著該統計資訊可能無法更新的 afer 每 500 修改基數是 < 500 或更改的每個 20%的基數好像 > 500。比例因素(值的範圍從 1 到 4、 1 和 4 之間)上產生根據選擇性,這一因素的更改從演算法獲得數的乘積 AutoStats 產生所需的修改的實際數目。

在表的表單中,可以summarised 以上演算法:

_________________________________________________________________________________

 Table Type | Empty Condition | Threshold WhenEmpty |Threshold When Not Empty

_________________________________________________________________________________

 Permanent | < 500 rows      | # ofChanges >= 500  | # of Changes >=500 + (20% of Cardinality)

___________________________________________________________________________

 Temporary | < 6 rows        | # ofChanges >= 6    | # of Changes >=500 + (20% of Cardinality)

___________________________________________________________________________

Table

Variables   | Change in cardinality does not affectAutoStats generation.

___________________________________________________________________________

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.