Método CheckTable
Testa a integridade de páginas do banco de dados para a tabela e os índices definidos na tabela.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Function CheckTable As StringCollection
'Uso
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
Valor de retorno
Tipo: System.Collections.Specialized. . :: . .StringCollection
Um valor do objeto de sistema StringCollection que contém os resultados da verificação de integridade da tabela, incluindo o número de linhas e o número de páginas.
Comentários
This method is functionally equivalent to the Transact-SQL CHECK TABLE statement.
Exemplos
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()
}
Consulte também