Propriedade do RDL IDTSBulkInsertTask.CheckConstraints
Essa API oferece suporte à infraestrutura do SQL Server 2012 e não se destina a ser usada diretamente no seu código.
Gets or sets a value that indicates whether you want to enforce table and column check constraints.
Namespace: Microsoft.SqlServer.Dts.Tasks.BulkInsertTask
Assembly: Microsoft.SqlServer.BulkInsertTask (em Microsoft.SqlServer.BulkInsertTask.dll)
Sintaxe
'Declaração
Property CheckConstraints As Boolean
Get
Set
'Uso
Dim instance As IDTSBulkInsertTask
Dim value As Boolean
value = instance.CheckConstraints
instance.CheckConstraints = value
bool CheckConstraints { get; set; }
property bool CheckConstraints {
bool get ();
void set (bool value);
}
abstract CheckConstraints : bool with get, set
function get CheckConstraints () : boolean
function set CheckConstraints (value : boolean)
Valor da propriedade
Tipo: System.Boolean
true to enforce check constraints; false to ignore check constraints during bulk import operations.
Comentários
For more information, see BulkInsertTask.