Create a sync
Open Reverse ETL and create a sync
Choose Reverse ETL from the workspace menu, then New sync. Give the sync a name your team will recognize in logs and alerts.
Select warehouse and connection
Pick the warehouse connection that holds your model. You run SQL only against connections your role can use.
Configure the SQL source
Enter SQL that returns the columns you plan to map. Prefer a dedicated view or named query so you can evolve logic without editing the sync definition each time.
Choose destination and mode
Select the destination app, object, and sync mode (insert, update, upsert, or delete). Then complete field mapping.
Warehouse SQL source
Your SQL source should return a flat result set: one row per destination record, column names that match what you intend to map (aliases help). Guidelines:- Stable keys: For upsert and update, include the destination primary key or external ID column from the warehouse so each row maps unambiguously.
- Incremental patterns: When volumes are large, filter with a high-watermark column (
updated_at,sync_version) and document the filter in the sync description so operators know how freshness is controlled. - Timeouts: Keep heavy joins and aggregations in warehouse views; the sync SQL should read the view to stay fast and predictable.
- Preview: Use the sync preview to validate row counts and sample values before the first full run.
Sync modes
- Insert
- Update
- Upsert
- Delete
Insert creates new records for each row returned by your query. Use when the destination starts empty for that population or when duplicates are acceptable and detected downstream. Most destinations reject duplicate keys; align with the API’s behavior.
Manage syncs
You can pause a sync, change schedules, rotate credentials, and clone a sync to test mapping changes in a sandbox destination. Version notes on each save help auditors trace who changed SQL or modes.Related topics
Destinations
Choose objects and fields for each connector.
Monitoring
Inspect runs, errors, and the dead letter queue.