你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DWCopyCommandSettings 构造函数

定义

重载

DWCopyCommandSettings()

初始化 DWCopyCommandSettings 类的新实例。

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

初始化 DWCopyCommandSettings 类的新实例。

DWCopyCommandSettings()

初始化 DWCopyCommandSettings 类的新实例。

public DWCopyCommandSettings();
Public Sub New ()

适用于

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

初始化 DWCopyCommandSettings 类的新实例。

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)

参数

defaultValues
IList<DWCopyCommandDefaultValue>

为 SQL 数据仓库中的每个目标列指定默认值。 属性中的默认值将覆盖 DB 中的 DEFAULT 约束集,并且标识列不能具有默认值。 类型: (对象数组或 Expression 的数组,其中包含) 对象的 resultType 数组。

additionalOptions
IDictionary<String,String>

在复制命令中直接传递给 SQL DW 的其他选项。 类型: (值的键值对应为字符串类型) (或 expression,并带有 resultType 对象) 。 示例:“additionalOptions”: { “MAXERRORS”: “1000”, “DATEFORMAT”: “'ymd'” }

适用于