Database.CheckTables Method (RepairType, RepairOptions, RepairStructure)
Tests the integrity of database pages for all tables and indexes defined on the tables of the database.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Function CheckTables ( _
repairType As RepairType, _
repairOptions As RepairOptions, _
repairStructure As RepairStructure _
) As StringCollection
'Usage
Dim instance As Database
Dim repairType As RepairType
Dim repairOptions As RepairOptions
Dim repairStructure As RepairStructure
Dim returnValue As StringCollection
returnValue = instance.CheckTables(repairType, _
repairOptions, repairStructure)
public StringCollection CheckTables(
RepairType repairType,
RepairOptions repairOptions,
RepairStructure repairStructure
)
public:
StringCollection^ CheckTables(
RepairType repairType,
RepairOptions repairOptions,
RepairStructure repairStructure
)
member CheckTables :
repairType:RepairType *
repairOptions:RepairOptions *
repairStructure:RepairStructure -> StringCollection
public function CheckTables(
repairType : RepairType,
repairOptions : RepairOptions,
repairStructure : RepairStructure
) : StringCollection
Parameters
- repairType
Type: Microsoft.SqlServer.Management.Smo.RepairType
A RepairType object that specifies the repair mode.
- repairOptions
Type: Microsoft.SqlServer.Management.Smo.RepairOptions
A RepairOptions object value that specifies the repair options, such as whether to perform an estimate only and what type of messages to include in the returned report.
- repairStructure
Type: Microsoft.SqlServer.Management.Smo.RepairStructure
A RepairStructure object value that specifies the type of structural checks to perform, such as 'physical only' that checks the page consistency and allocation structures.
Return Value
Type: System.Collections.Specialized.StringCollection
A StringCollection object value that contains a report about the integrity of the tables and indexes in the database.