nanggardev
07/16/2024, 4:50 AMkapa.ai
07/16/2024, 4:51 AMnanggardev
07/16/2024, 4:52 AMkapa.ai
07/16/2024, 4:52 AMkapa.ai
07/16/2024, 4:52 AMuser_id
in the users
table), then the destination will end up having multiple records with the same primary key value. If you only care about having the latest snapshot of your data, you may want to look at other sync modes that will keep smaller copies of the replicated data or you can periodically run cleanup jobs which retain only the latest instance of each record ([source](https://docs.airbyte.com/using-airbyte/core-concepts/sync-modes/incremental-append#getting-the-latest-snapshot-of-data)). To view the content of the incremental append synchronization into the raw table, you can execute the following SQL command: sql SELECT * FROM _airbyte_raw_table_one;
This should respond with a table that contains the data from the incremental append synchronization ([source](https://airbyte.com/tutorials/incremental-data-synchronization#step-6)).