CheckTables-Methode (RepairType, RepairStructure)
Testet die Integrität von Datenbankseiten für alle Tabellen und Indizes, die für die Tabellen der Datenbank definiert sind.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Function CheckTables ( _
repairType As RepairType, _
repairStructure As RepairStructure _
) As StringCollection
'Usage
Dim instance As Database
Dim repairType As RepairType
Dim repairStructure As RepairStructure
Dim returnValue As StringCollection
returnValue = instance.CheckTables(repairType, _
repairStructure)
public StringCollection CheckTables(
RepairType repairType,
RepairStructure repairStructure
)
public:
StringCollection^ CheckTables(
RepairType repairType,
RepairStructure repairStructure
)
member CheckTables :
repairType:RepairType *
repairStructure:RepairStructure -> StringCollection
public function CheckTables(
repairType : RepairType,
repairStructure : RepairStructure
) : StringCollection
Parameter
- repairType
Typ: Microsoft.SqlServer.Management.Smo. . :: . .RepairType
Ein RepairType-Objekt, das den Reparaturmodus angibt.
- repairStructure
Typ: Microsoft.SqlServer.Management.Smo. . :: . .RepairStructure
Ein RepairStructure-Objektwert, der den Typ der strukturellen Überprüfungen angibt, die ausgeführt werden sollen. PHYSICAL_ONLY ("nur physisch") überprüft beispielsweise die Seitenkonsistenz und die Zuordnungsstrukturen.
Rückgabewert
Typ: System.Collections.Specialized. . :: . .StringCollection
Ein StringCollection-Objektwert, der einen Bericht über die Integrität der Tabellen und Indizes in der Datenbank enthält.
Siehe auch