Khoa Nguyen
09/25/2024, 2:33 AMuser
09/25/2024, 2:34 AM_airbyte_raw_xxx
) in the destination. The data in these raw tables is stored as JSON blobs in the _airbyte_data
column. This is done to ensure that the raw data is always accessible and can be re-transformed in the future without the need for a resync of data from source systems [source](https://airbyte.com/tutorials/full-data-synchronization#step-1). If you have enabled [Basic Normalization](https://docs.airbyte.com/understanding-airbyte/basic-normalization/), Airbyte will create a normalized table by extracting data from the JSON object in the raw table. This normalized table will have data in separate columns. If you are not seeing the normalized tables, it could be because: - Basic Normalization is not enabled. - The destination does not support normalization. You can check the list of [destinations that support normalization](https://docs.airbyte.com/understanding-airbyte/basic-normalization#destinations-that-support-basic-normalization). - There might be an issue with the sync process. You can check the logs for any errors. If you need to query the raw data before it's normalized, some destinations like ClickHouse provide JSONExtract-functions to parse the data from the _airbyte_data
column [source](https://github.com/airbytehq/airbyte/issues/36199).Khoa Nguyen
09/25/2024, 2:46 AMuser
09/25/2024, 2:46 AMuser
09/25/2024, 2:46 AM