Share via


DWCopyCommandSettings Constructors

Definition

Overloads

DWCopyCommandSettings()

Initializes a new instance of the DWCopyCommandSettings class.

DWCopyCommandSettings(IList<DWCopyCommandDefaultValue>, IDictionary<String,String>)

Initializes a new instance of the DWCopyCommandSettings class.

DWCopyCommandSettings()

Initializes a new instance of the DWCopyCommandSettings class.

public DWCopyCommandSettings ();
Public Sub New ()

Applies to

DWCopyCommandSettings(IList<DWCopyCommandDefaultValue>, IDictionary<String,String>)

Initializes a new instance of the DWCopyCommandSettings class.

public DWCopyCommandSettings (System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.DWCopyCommandDefaultValue> defaultValues = default, System.Collections.Generic.IDictionary<string,string> additionalOptions = default);
new Microsoft.Azure.Management.DataFactory.Models.DWCopyCommandSettings : System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.DWCopyCommandDefaultValue> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.DataFactory.Models.DWCopyCommandSettings
Public Sub New (Optional defaultValues As IList(Of DWCopyCommandDefaultValue) = Nothing, Optional additionalOptions As IDictionary(Of String, String) = Nothing)

Parameters

defaultValues
IList<DWCopyCommandDefaultValue>

Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).

additionalOptions
IDictionary<String,String>

Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }

Applies to