Package version:

Interface SqlUpsertSettings

Sql upsert option settings

interface SqlUpsertSettings {
    interimSchemaName?: any;
    keys?: any;
    useTempDB?: any;
}

Properties

interimSchemaName?: any

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

keys?: any

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

useTempDB?: any

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