다음을 통해 공유


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 시스템 개체 값입니다.

주의

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

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()
}