Skip to main content

Enum SqlServerPdwLoadingMode

Namespace: Varigence.Languages.Biml.Transformation

Assembly: Biml.dll

C#


public enum SqlServerPdwLoadingMode

Fields

FieldsDescription
AppendSpecifies that the destination component should append all rows to the existing data in the destination table.
FastAppendSpecifies that the destination component should append all rows to the existing data in the destination table using fast loading.
ReloadSpecifies that the destination component should truncate the existing data in the destination table before loading rows.
UpsertSpecifies that the destination component should use the specified key columns to determine if rows represent new or existing records. New records should be appended while existing records should be updated.