How data flows into the warehouse
When you connect an integration and activate entities, BonData creates two layers of tables for each entity:| Layer | Purpose | Naming pattern |
|---|---|---|
| RAW | Unprocessed data exactly as it comes from the source | raw_{app}_{integration_id}_{entity} |
| SILVER | Cleaned, validated, and schema-aligned version of the RAW data | silver_{app}_{integration_id}_{entity_id}_{entity} |
All tables are stored in a tenant-specific schema (e.g.,
BONDATA_YourCompany), keeping your data isolated from other accounts.Entities tab
Go to Data > Data Warehouse in the sidebar, then select your warehouse. The Entities tab shows every integration and its entities, along with the corresponding RAW and SILVER table names.
- See which entities have been synced and are queryable
- Verify that both RAW and SILVER tables exist for an entity
- Check object counts per table
- Quickly find the exact table name you need for a SQL query
SQL Editor
Switch to the SQL Editor tab to query your warehouse data directly. The editor includes a table browser, syntax highlighting, autocomplete, and a results panel.
Writing queries
- Write standard SQL
SELECTstatements in the editor - Press Cmd/Ctrl + Enter to execute
- Click any table name in the left sidebar to auto-generate a
SELECT * FROM "table" LIMIT 100query - Results display up to 1,000 rows — a warning appears if results are truncated
Table browser
The left panel lists all available tables grouped by type (RAW and SILVER). Use the search bar to filter by name. Click a table to preview its data instantly.Export results
Download query results as a CSV file using the export button in the results panel.Choosing a warehouse for an integration
By default, integration data is stored in Bondata Cloud. If your organization has connected external warehouses (PostgreSQL or Snowflake), you can choose where each integration’s data is stored. During integration setup, expand the Advanced section at the bottom of the configuration dialog. Under Data Warehouse, select the target warehouse from the dropdown.
Supported warehouses
In addition to the built-in Bondata Cloud, you can connect your own data warehouse as a storage target.Available now
| Warehouse | Auth methods |
|---|---|
| PostgreSQL | Basic (host, port, database, user, password) |
| Snowflake | Basic, Key Pair, OAuth2, Token |
Coming soon
| Warehouse | Status |
|---|---|
| BigQuery | In development |
| Databricks | In development |
| Azure Synapse Analytics | In development |
What’s next
Connect an integration
Add a data source and start syncing entities.
Managing entities
Control which datasets are active in your warehouse.