├── .gitignore ├── LICENSE ├── README.md ├── dbt_project.yml └── macros ├── materializations ├── sfc_incremental.sql └── sfc_task.sql └── sfc_ref.sql /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | dbt_modules/ 3 | logs/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiahhansen/snowflake-helper-dbt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiahhansen/snowflake-helper-dbt/HEAD/README.md -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiahhansen/snowflake-helper-dbt/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /macros/materializations/sfc_incremental.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiahhansen/snowflake-helper-dbt/HEAD/macros/materializations/sfc_incremental.sql -------------------------------------------------------------------------------- /macros/materializations/sfc_task.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiahhansen/snowflake-helper-dbt/HEAD/macros/materializations/sfc_task.sql -------------------------------------------------------------------------------- /macros/sfc_ref.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiahhansen/snowflake-helper-dbt/HEAD/macros/sfc_ref.sql --------------------------------------------------------------------------------