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