Hi Team,
I am new to dbt. I am following a course. While doing this, I ran a script for snapshot,
{% snapshot scd_dim_listings %}
{{
config(
target_schema=‘snapshot’,
unique_key=‘ID’,
stategy='timestamp',
updated_at='UPDATED_AT'
)
}}
select*from {{ source(‘airbnb’, ‘listing’) }}
{% endsnapshot %}
After this when I run dbt snapshot I am getting
“Parsing Error
at path : Snapshots must be configured with a ‘strategy’, ‘unique_key’, and ‘target_schema’.”
Could you please help me and let me know why this error I am getting