| name | dbt-debugging |
| description | Load when dbt run or dbt parse fails. Covers YML duplicate patches, ref errors, passthrough model warnings, current_date fixes, DuckDB error messages, and zero-row diagnosis. |
| type | skill |
dbt Debugging Skill
1. Duplicate YML Patches (VERY COMMON)
dbt fails with "Duplicate patch" when the same model appears in multiple YML files.
Fix in ONE pass:
- Glob
models/**/*.yml to find all YML files
- Keep the entry with the full contract (descriptions, refs, columns) - usually in a subdirectory YML
- Remove the duplicate from
schema.yml (which typically only has tests)
2. Ref Not Found
If Compilation Error: node not found for ref():
3. Passthrough Model Warning
NEVER create .sql files named after raw tables (e.g. circuits.sql, results.sql).
This DESTROYS source data by replacing it with a materialized model.
Fix: add schema: main to the source definition in YML instead.
4. current_date Fix
If dbt_project_map warns about current_date usage:
- Call
get_date_boundaries - find the column marked "USE THIS"
- Replace
current_date/now() with (SELECT MAX(<col>) FROM {{ ref('<table>') }})
- For package models: create
models/<name>.sql, paste full SQL, replace current_date
5. ROW_NUMBER Non-Determinism
If dbt_project_map warns about ROW_NUMBER/RANK:
- Check if ORDER BY columns are unique within each partition
- If not unique, append the primary key to ORDER BY
- Re-run
dbt run --select <model>
6. DuckDB Error Messages
| Error | Fix |
|---|
invalid date field format | STRPTIME(col, '%d/%m/%Y')::DATE |
Table does not exist | Check actual names with describe_table |
column not found | Check exact names - case matters in DuckDB |
Cannot mix TIMESTAMP and INTEGER | Cast both args to same type |
No function matches DOUBLE / VARCHAR | Add explicit CAST() |
fivetran_utils is undefined | Run dbt deps (only if packages.yml exists) |
7. Package Model Build Failures
If dbt run fails on a model inside dbt_packages/ with a type error
(e.g., date_trunc on an INTEGER, No function matches), you MUST fix
the package SQL file directly. The sandbox has no internet, so you cannot
reinstall the package. Read the failing SQL, find the type mismatch, and
add the appropriate CAST or conversion (e.g., to_timestamp(epoch_col)
for epoch integers, CAST(col AS DATE) for type mismatches). Broken
upstream models block everything downstream.
8. Zero-Row Model
Binary search: comment out WHERE clauses and JOINs one at a time to find which
condition drops all rows. Most common cause: INNER JOIN where LEFT JOIN is needed.
8. Fan-Out (Too Many Rows)
- Diagnose:
SELECT join_key, COUNT(*) FROM right_table GROUP BY 1 HAVING COUNT(*) > 1
- Fix A: pre-aggregate right table before joining
- Fix B:
SELECT DISTINCT (if valid for the grain)
- Fix C:
ROW_NUMBER() dedup pattern