Index.CheckIndex 方法

Tests the integrity of database pages that store the index.

命名空间:  Microsoft.SqlServer.Management.Smo
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
Public Function CheckIndex As StringCollection
用法
Dim instance As Index 
Dim returnValue As StringCollection 

returnValue = instance.CheckIndex()
public StringCollection CheckIndex()
public:
StringCollection^ CheckIndex()
member CheckIndex : unit -> StringCollection
public function CheckIndex() : StringCollection

返回值

类型:System.Collections.Specialized.StringCollection
A StringCollection object value that contains the error messages generated by the integrity check.

注释

The CheckIndex method is implemented using the Transact-SQL DBCC CHECKTABLE statement.

注意注意

Indexes based on the UserDefinedTableType object cannot be checked and running this method will generate an exception.

示例

创建、更改和删除索引

请参阅

参考

Index 类

Microsoft.SqlServer.Management.Smo 命名空间

其他资源

索引

CREATE INDEX (Transact-SQL)