Mode
|
Description
|
SchemaAndData
|
Creates a new table in the target database and copies all rows
|
SchemaOnly
|
Creates a new empty table in the target database
|
ReplaceRows
|
Deletes all rows from the target database and copies all rows from the source database
|
InsertRows
|
Adds rows that are in the source database but not in the target database. A primary key must be defined for the table. A record is deemed not to exist if a record with the same primary key cannot be found in the target database.
|
UpdateRows
|
Updates rows that are in the source database and also in the target database. A primary key must be defined for the table. A record is deemed to exist if a record with the same primary key is found in the target database.
|
MergeRows
|
Updates rows that are in the target database and inserts rows that are not. A primary key must be defined for the table. A record is deemed to exist if a record with the same primary key is found in the target database.
|