DWCopyCommandSettingsResponse

data class DWCopyCommandSettingsResponse(val additionalOptions: Map<String, String>? = null, val defaultValues: List<DWCopyCommandDefaultValueResponse>? = null)

DW Copy Command settings.

Constructors

Link copied to clipboard
constructor(additionalOptions: Map<String, String>? = null, defaultValues: List<DWCopyCommandDefaultValueResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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'" }

Link copied to clipboard

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).