UpdateIndexStatistics メソッド
インデックス統計を更新します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Sub UpdateIndexStatistics
'使用
Dim instance As Database
instance.UpdateIndexStatistics()
public void UpdateIndexStatistics()
public:
void UpdateIndexStatistics()
member UpdateIndexStatistics : unit -> unit
public function UpdateIndexStatistics()
説明
データベース内のテーブルはさまざまなクエリでアクセスされるため、テーブル全体のデータの分布によって、インデックスの状態が影響を受ける場合があります。インデックス統計を更新すると、最も効率のよいアクセス方法が選択されます。
使用例
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")
'Update the index statistics on the database.
db.UpdateIndexStatistics()