共用方式為


Table.CheckTable 方法

Tests the integrity of database pages for the table and indexes defined on the table.

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
Public Function CheckTable As StringCollection
'用途
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

傳回值

型別:System.Collections.Specialized.StringCollection
A StringCollection system object value that contains the results of the checking the integrity of the table, including the number of rows and the number of pages.

備註

This method is functionally equivalent to the Transact-SQL CHECK TABLE statement.

範例

C#

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

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("AdventureWorks2012")

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

請參閱

參考

Table 類別

Microsoft.SqlServer.Management.Smo 命名空間

其他資源

資料表

CREATE TABLE (Transact-SQL)