├── .gitignore ├── LAB_ASSETS ├── GSHEETS_LINKS.md ├── README.md ├── google_ads_dbt.zip ├── google_ads_dbt │ ├── README.md │ ├── google_ads__click_performance.csv │ ├── google_ads__criteria_ad_adapter.csv │ └── google_ads__url_ad_adapter.csv ├── google_ads_demo.zip ├── google_ads_demo │ ├── README.md │ ├── click_performance.csv │ ├── criteria_performance.csv │ └── final_url_performance.csv ├── vhol_script.sql └── vhol_script.sql.zip ├── LICENSE ├── README.md ├── analysis └── .gitkeep ├── data └── .gitkeep ├── dbt_project.yml ├── deployment.yml ├── macros └── .gitkeep ├── packages.yml ├── snapshots └── .gitkeep └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | target/ 3 | dbt_modules/ 4 | logs/ 5 | -------------------------------------------------------------------------------- /LAB_ASSETS/GSHEETS_LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/GSHEETS_LINKS.md -------------------------------------------------------------------------------- /LAB_ASSETS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/README.md -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_dbt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_dbt.zip -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_dbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_dbt/README.md -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_dbt/google_ads__click_performance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_dbt/google_ads__click_performance.csv -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_dbt/google_ads__criteria_ad_adapter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_dbt/google_ads__criteria_ad_adapter.csv -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_dbt/google_ads__url_ad_adapter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_dbt/google_ads__url_ad_adapter.csv -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_demo.zip -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_demo/README.md -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_demo/click_performance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_demo/click_performance.csv -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_demo/criteria_performance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_demo/criteria_performance.csv -------------------------------------------------------------------------------- /LAB_ASSETS/google_ads_demo/final_url_performance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/google_ads_demo/final_url_performance.csv -------------------------------------------------------------------------------- /LAB_ASSETS/vhol_script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/vhol_script.sql -------------------------------------------------------------------------------- /LAB_ASSETS/vhol_script.sql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LAB_ASSETS/vhol_script.sql.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/README.md -------------------------------------------------------------------------------- /analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/deployment.yml -------------------------------------------------------------------------------- /macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fivetran/snowflake_fivetran_vhol/HEAD/packages.yml -------------------------------------------------------------------------------- /snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------