Udostępnij za pośrednictwem


Metoda UpdateIndexStatistics

Aktualizacje indeks statystyki.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Syntax

'Deklaracja
Public Sub UpdateIndexStatistics
'Użycie
Dim instance As Database

instance.UpdateIndexStatistics()
public void UpdateIndexStatistics()
public:
void UpdateIndexStatistics()
member UpdateIndexStatistics : unit -> unit 
public function UpdateIndexStatistics()

Uwagi

Ponieważ tabel w bazie danych są dostępne w różnych kwerendach, dystrybucji danych całej tabela może mieć wpływ na pomyślne jak indeks jest.Aktualizując statystyka indeksu, należy wybrać najbardziej efektywny sposób dostępu do danych.

Przykłady

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks2008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2")

'Update the index statistics on the database.
db.UpdateIndexStatistics()

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")

$db.UpdateIndexStatistics()