CheckTable メソッド
テーブルおよびテーブルで定義されているインデックスの、データベース ページの整合性をテストします。
名前空間: 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
行数やページ数など、テーブルの整合性チェックの結果を含む StringCollection システム オブジェクト値。
説明
このメソッドは、機能的には Transact-SQL の CHECK TABLE ステートメントと同等です。
使用例
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()
}