Skip to main content

Enum MergeColumnUsage

Namespace: Varigence.Languages.Biml.Task

Assembly: Biml.dll

C#


public enum MergeColumnUsage

Fields

FieldsDescription
CompareSpecifies that the column will only be used in comparing rows for a merge match.
CompareInsertSpecifies that a column with both compare and insert but not update.
CompareUpdateSpecifies that a column with both compare and update but not insert.
CompareUpdateInsertSpecifies that a column with compare, update, and insert.
ExcludeSpecifies that the column will be excluded entirely from the merge operation.
InsertSpecifies that the column will only be used to insert new target table values when a row does not match.
UpdateSpecifies that the column will only be used to update target table values when a row matches.
UpdateInsertSpecifies that a column with both update and insert but not compare.