dbt - Incremental Models
You wrote this incremental model using delete+insert:
After running, you notice duplicate rows in the target table. What is the likely cause?
{{ config(materialized='incremental', incremental_strategy='delete+insert', unique_key='id') }}
select id, value from source_tableAfter running, you notice duplicate rows in the target table. What is the likely cause?
