This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select code_part | |
from util_model_builder | |
where source = 'tienda' | |
and table_name = 'orders_order' | |
order by nr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## WARNING: | |
## The source table seems to have dependencies that has not been loaded. | |
## If you want to load these tables into their own staging models, you should do so first: | |
## - users_userchannel -> select code_part from util_model_builder where source = 'tienda' and table_name = 'users_userchannel' order by nr | |
## Step 1: (Optional) Update local environment | |
## If it has been a while since working in you local environment it is recommended that you do a full-refresh (~ 10 min) | |
## git checkout master | |
## git pull | |
## dbt run --full-refresh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ | |
config( | |
materialized = 'table', | |
tags=['table', 'hourly'], | |
) | |
}} | |
select | |
id, | |
delivery_date, |