Unlike Upsert Row, this mode never
modifies existing records; it only inserts new ones.
Parameters
Merge Columns, Exclude Columns, and On Schema Change don’t apply to this write mode. If you
switch to Append Unique Rows from another merge approach, any values set for those options are
cleared.
Example: Append new orders only
An order table usesORDER_ID as the unique key. The incoming dataset includes a status update for an existing order and one new order.
Existing target table
Incoming dataset
Resulting target table
Because
ORDER_ID 101 already exists in the target table, its incoming row is ignored, so the existing Shipped status is left unchanged.ORDER_ID 103 doesn’t exist in the target, so it’s inserted as a new row.ORDER_ID 102 has no matching row in the incoming dataset, so it’s left as-is.
