- SNOWFLAKE_SAMPLE_DATA that is available by default in all new Snowflake accounts
- Knoema: Economy Data Atlas
- It is available for free in the Snowflake Data Markeplace
- If named other than "KNOEMA_ECONOMY_DATA_ATLAS", update the database name in sources.yml
- Create a target schema that you want to deploy your dbt demo into
- Add the Knoema Economy Data Atlas and Snowflake Sample Data to your account if necessary
- Copy the sample profiles.yml file to your ~/.dbt/ folder and update it with your credentials and target DB/schema
- From the root folder, run
dbt deps
to download modules from the dbt hub - Run
dbt build --full-refresh
and troubleshoot any errors such as missing objects or permission issues
- How to install dbt
pip install dbt-core dbt-snowflake
- Most common dbt commands:
dbt deps
(necessary for this project before build)dbt build --full-refresh
dbt build
dbt docs generate
dbt docs serve
- Nested models:
- DIM_ORDERS
- DIM_CURRENT_YEAR_ORDERS
- DIM_CURRENT_YEAR_OPEN_ORDERS
- Pre-hook:
- DIM_CALENDAR_DAY
- Materializations:
- LKP_EXCHANGE_RATES (table)
- LKP_CUSTOMERS_WITH_ORDERS (ephemeral)
- DIM_CUSTOMERS_SHARE (secure view)
- FACT_ORDER_LINE (incremental)
- DIM_CUSTOMERS_TYPE2 (snapshot)
- Source data quality tests:
- sources.yml
- Model data quality tests:
- schema.yml
- Features available in dbt_project.yml
- run-start/run-end hooks
- logging before and after modules
- default materializations by folder path
- Snowflake features - copy_grants, secure views, warehouse
- schemas for models
- Macro examples:
- snowflake_surrogate_key
- copy_log_to_snowflake
- create_masking_policies
- Jinja expressions:
- Q1_FACT_PRICING_SUMMARY_REPORT_QUERY
- Q2_MINIMUM_COST_SUPPLIER_QUERY
- Q3_SHIPPING_PRIORITY_QUERY
- Q4_ORDER_PRIORITY_CHECKING_QUERY
- Learn more about dbt in the docs
- Free on-demand training
- Additional Packages
- Snowflake Guide - Accelerating Data Teams with dbt Core & Snowflake
- Snowflake Guide - Accelerating Data Teams with dbt Cloud & Snowflake
- Snowflake Guide - Data Engineering with Apache Airflow, Snowflake & dbt