Bagikan melalui


SqlUpsertSettings Constructors

Definition

Overloads

SqlUpsertSettings()

Initializes a new instance of the SqlUpsertSettings class.

SqlUpsertSettings(Object, Object, Object)

Initializes a new instance of the SqlUpsertSettings class.

SqlUpsertSettings()

Initializes a new instance of the SqlUpsertSettings class.

public SqlUpsertSettings ();
Public Sub New ()

Applies to

SqlUpsertSettings(Object, Object, Object)

Initializes a new instance of the SqlUpsertSettings class.

public SqlUpsertSettings (object useTempDB = default, object interimSchemaName = default, object keys = default);
new Microsoft.Azure.Management.DataFactory.Models.SqlUpsertSettings : obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.SqlUpsertSettings
Public Sub New (Optional useTempDB As Object = Nothing, Optional interimSchemaName As Object = Nothing, Optional keys As Object = Nothing)

Parameters

useTempDB
Object

Specifies whether to use temp db for upsert interim table. Type: boolean (or Expression with resultType boolean).

interimSchemaName
Object

Schema name for interim table. Type: string (or Expression with resultType string).

keys
Object

Key column names for unique row identification. Type: array of strings (or Expression with resultType array of strings).

Applies to