Upload strategies
Different ways to upload your changes
There are four different upload strategies available:
- New table
- Append
- Replace
- Merge
1. New table
New table is the default strategy. It will always create a new table.
2. Append
Append strategy will append the data to the existing table. To append, you need to specify the table_id
of the table you want to append to.
The method is also available on the Table
object:
3. Replace
The replace strategy will replace the data in the existing table. To replace, you need to specify the table_id
of the table you want to replace.
There is a shorthand for the method available on the Table
-object:
4. Merge
The merge strategy will merge the data in the existing table. To merge, you need to specify the table_id
of the table you want to merge.
You also need to specify the column to merge on. The merge strategy will merge the data on the specified column.
The merge-column must be a unique column in both tables.
There is a shorthand for the method available on the Table
-object: