Udostępnij za pośrednictwem


Metoda Table.CheckTable

Sprawdza integralność stron bazy danych dla tabela i zdefiniowane w tabela indeksów.

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

Składnia

'Deklaracja
Public Function CheckTable As StringCollection
'Użycie
Dim instance As Table
Dim returnValue As StringCollection

returnValue = instance.CheckTable()
public StringCollection CheckTable()
public:
StringCollection^ CheckTable()
member CheckTable : unit -> StringCollection 
public function CheckTable() : StringCollection

Wartość zwracana

Typ: System.Collections.Specialized.StringCollection
A StringCollection wartość obiektu system zawierający wyniki sprawdzania integralność tabela, w tym liczby wierszy i liczby stron.

Uwagi

Ta metoda jest funkcjonalnie równoważne Transact-SQL sprawdzić tabelę instrukcja.

Przykłady

C#

Server srv = new Server("(local)");
Database db = srv.Databases["AdventureWorks2008R2"];

foreach (Table tb in db.Tables)
{
   tb.CheckTable();
}

PowerShell

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

foreach ($tb in $db.Tables)
{
   $tb.CheckTable()
}