When using the Destination tool, your table is not stored in Less. It is sent to the destination you have selected.
Snowflake
Snowflake
1
Output table name
Select the table name that you want to create in Snowflake. If you are appending or upserting, you need to specify a table name that already exists in Snowflake.
2
Operation
- Overwrite. This will overwrite the existing table with the new data every time the Destination tool runs.
- Append. This will add all the new rows to the existing table. Over time there’s a risk that you will create very large tables - use this option with caution.
- Upsert. This requires selecting a column to use as a unique identifier. The upsert operation will then look for that ID in the table and update the existing rows with the new data (when it finds a row with that ID). If the row does not exist, it will insert a new row.
3
Upsert Column (only for upsert operation)
Select the column that you want to use to upsert the data. You need to ensure that this column exists in the table you are upserting to.