mirror of
https://gitlab.com/cief-data/dbt_cloud.git
synced 2026-08-19 04:14:00 +00:00
17 lines
433 B
SQL
17 lines
433 B
SQL
{% snapshot snap_exchange__segment_companies %}
|
|
|
|
{{
|
|
config(
|
|
strategy='check',
|
|
unique_key="segment_id||'-'||company_id",
|
|
check_cols=['segment_id'],
|
|
)
|
|
}}
|
|
|
|
select
|
|
*,
|
|
'{{ modules.datetime.datetime.now(modules.pytz.timezone("Asia/Kuala_Lumpur")) }}' AS _dbt_ran_datetime
|
|
|
|
from {{ source('src_exchange_mysql', 'segment_companies') }}
|
|
|
|
{% endsnapshot %} |