udemy-complete-dbt-bootcamp/code_thingies/dbtlearn/snapshots/scd_raw_listings.sql

18 lines
293 B
MySQL
Raw Permalink Normal View History

2023-11-02 17:05:44 +01:00
{% snapshot scd_raw_listings %}
{{
config(
target_schema = 'dev',
unique_key = 'id',
strategy = 'timestamp',
updated_at = 'updated_at',
invalidate_hard_deletes = True
)
}}
SELECT *
FROM
{{ source('airbnb', 'listings')}}
{% endsnapshot %}