Enum SqlServerPdwLoadingMode
C#
public enum SqlServerPdwLoadingMode
Fields
Append | Specifies that the destination component should append all rows to the existing data in the destination table. |
FastAppend | Specifies that the destination component should append all rows to the existing data in the destination table using fast loading. |
Reload | Specifies that the destination component should truncate the existing data in the destination table before loading rows. |
Upsert | Specifies 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. |