Database.CheckTablesDataOnly Méthode

Définition

Surcharges

Nom Description
CheckTablesDataOnly(RepairStructure)

Appelle DBCC CHECKDB avec l’option NO_INDEX et la structure de réparation donnée

CheckTablesDataOnly(RepairOptions, RepairStructure, Nullable<Int64>)

Appelle DBCC CHECKDB avec l’option NO_INDEX et les options de réparation et la structure de réparation données.

CheckTablesDataOnly()

Appelle DBCC CHECKDB avec l’option NOINDEX

CheckTablesDataOnly(RepairOptions)

Appelle DBCC CHECKDB avec l’option NO_INDEX et les options de réparation données

CheckTablesDataOnly(RepairStructure)

Appelle DBCC CHECKDB avec l’option NO_INDEX et la structure de réparation donnée

public System.Collections.Specialized.StringCollection CheckTablesDataOnly(Microsoft.SqlServer.Management.Smo.RepairStructure repairStructure);
member this.CheckTablesDataOnly : Microsoft.SqlServer.Management.Smo.RepairStructure -> System.Collections.Specialized.StringCollection
Public Function CheckTablesDataOnly (repairStructure As RepairStructure) As StringCollection

Paramètres

repairStructure
RepairStructure

Retours

Messages générés par DBCC CHECKDB

S’applique à

CheckTablesDataOnly(RepairOptions, RepairStructure, Nullable<Int64>)

Appelle DBCC CHECKDB avec l’option NO_INDEX et les options de réparation et la structure de réparation données.

public System.Collections.Specialized.StringCollection CheckTablesDataOnly(Microsoft.SqlServer.Management.Smo.RepairOptions repairOptions, Microsoft.SqlServer.Management.Smo.RepairStructure repairStructure, long? maxDOP = default);
member this.CheckTablesDataOnly : Microsoft.SqlServer.Management.Smo.RepairOptions * Microsoft.SqlServer.Management.Smo.RepairStructure * Nullable<int64> -> System.Collections.Specialized.StringCollection
Public Function CheckTablesDataOnly (repairOptions As RepairOptions, repairStructure As RepairStructure, Optional maxDOP As Nullable(Of Long) = Nothing) As StringCollection

Paramètres

repairOptions
RepairOptions
repairStructure
RepairStructure
maxDOP
Nullable<Int64>

Degré de parallélisme pour permettre la vérification. Valide uniquement pour sql version >= 13

Retours

Messages générés par DBCC CHECKDB

S’applique à

CheckTablesDataOnly()

Appelle DBCC CHECKDB avec l’option NOINDEX

public System.Collections.Specialized.StringCollection CheckTablesDataOnly();
member this.CheckTablesDataOnly : unit -> System.Collections.Specialized.StringCollection
Public Function CheckTablesDataOnly () As StringCollection

Retours

Messages générés par DBCC CHECKDB

S’applique à

CheckTablesDataOnly(RepairOptions)

Appelle DBCC CHECKDB avec l’option NO_INDEX et les options de réparation données

public System.Collections.Specialized.StringCollection CheckTablesDataOnly(Microsoft.SqlServer.Management.Smo.RepairOptions repairOptions);
member this.CheckTablesDataOnly : Microsoft.SqlServer.Management.Smo.RepairOptions -> System.Collections.Specialized.StringCollection
Public Function CheckTablesDataOnly (repairOptions As RepairOptions) As StringCollection

Paramètres

repairOptions
RepairOptions

Retours

Messages générés par DBCC CHECKDB

S’applique à