Please help inserting all records from SQL into an existing table
Workflow
- Trigger daily 5AM
- Remove all records from destination table:
TRUNCATE ONLY session_logs_processed;
- Query source table with transformed data
- Insert all transformed records into destination table:
INSERT INTO session_logs_processed SELECT * FROM {{sourceDb.data}};
Error received on Step 4. Insert all transformed records into destination table
Error evaluating destinationDb: syntax error at or near "$1"
--- Failed running query: destinationDb ---
--- Hit failure ---