Darvy Betances
10/21/2024, 7:49 AMuser
10/21/2024, 7:50 AM_airbyte_loaded_at
column, and then running a sync. After the sync completes, your final table will be restored to its correct state. Here is the process for manually triggering a final table re-creation: 1. Drop the final table entirely (DROP TABLE <your_final_table>
) 2. Unset the raw table's _airbyte_loaded_at
column (UPDATE airbyte_internal.<your_raw_table> SET _airbyte_loaded_at = NULL
) 1. If you are using a nonstandard raw table schema, replace airbyte_internal
with that schema. 3. Run a sync. After the sync completes, your final table will be restored to its correct state. For more details, you can refer to the [Airbyte documentation](https://docs.airbyte.com/using-airbyte/core-concepts/typing-deduping#on-final-table-re-creation).