├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── analysis └── .gitkeep ├── dbt_project.yml ├── macros └── .gitkeep ├── models ├── raw_stage │ ├── raw_inventory.sql │ ├── raw_orders.sql │ └── raw_transactions.sql ├── raw_vault │ ├── hubs │ │ ├── hub_customer.sql │ │ ├── hub_lineitem.sql │ │ ├── hub_nation.sql │ │ ├── hub_order.sql │ │ ├── hub_part.sql │ │ ├── hub_region.sql │ │ └── hub_supplier.sql │ ├── links │ │ ├── link_customer_nation.sql │ │ ├── link_customer_order.sql │ │ ├── link_inventory.sql │ │ ├── link_inventory_allocation.sql │ │ ├── link_nation_region.sql │ │ ├── link_order_lineitem.sql │ │ └── link_supplier_nation.sql │ ├── sats │ │ ├── sat_inv_inventory_details.sql │ │ ├── sat_inv_part_details.sql │ │ ├── sat_inv_supp_nation_details.sql │ │ ├── sat_inv_supp_region_details.sql │ │ ├── sat_inv_supplier_details.sql │ │ ├── sat_order_cust_nation_details.sql │ │ ├── sat_order_cust_region_details.sql │ │ ├── sat_order_customer_details.sql │ │ ├── sat_order_lineitem_details.sql │ │ └── sat_order_order_details.sql │ └── t_links │ │ └── t_link_transactions.sql ├── schema.yml └── stage │ ├── v_stg_inventory.sql │ ├── v_stg_orders.sql │ └── v_stg_transactions.sql ├── packages.yml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/README.md -------------------------------------------------------------------------------- /analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/raw_stage/raw_inventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_stage/raw_inventory.sql -------------------------------------------------------------------------------- /models/raw_stage/raw_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_stage/raw_orders.sql -------------------------------------------------------------------------------- /models/raw_stage/raw_transactions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_stage/raw_transactions.sql -------------------------------------------------------------------------------- /models/raw_vault/hubs/hub_customer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/hubs/hub_customer.sql -------------------------------------------------------------------------------- /models/raw_vault/hubs/hub_lineitem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/hubs/hub_lineitem.sql -------------------------------------------------------------------------------- /models/raw_vault/hubs/hub_nation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/hubs/hub_nation.sql -------------------------------------------------------------------------------- /models/raw_vault/hubs/hub_order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/hubs/hub_order.sql -------------------------------------------------------------------------------- /models/raw_vault/hubs/hub_part.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/hubs/hub_part.sql -------------------------------------------------------------------------------- /models/raw_vault/hubs/hub_region.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/hubs/hub_region.sql -------------------------------------------------------------------------------- /models/raw_vault/hubs/hub_supplier.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/hubs/hub_supplier.sql -------------------------------------------------------------------------------- /models/raw_vault/links/link_customer_nation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/links/link_customer_nation.sql -------------------------------------------------------------------------------- /models/raw_vault/links/link_customer_order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/links/link_customer_order.sql -------------------------------------------------------------------------------- /models/raw_vault/links/link_inventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/links/link_inventory.sql -------------------------------------------------------------------------------- /models/raw_vault/links/link_inventory_allocation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/links/link_inventory_allocation.sql -------------------------------------------------------------------------------- /models/raw_vault/links/link_nation_region.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/links/link_nation_region.sql -------------------------------------------------------------------------------- /models/raw_vault/links/link_order_lineitem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/links/link_order_lineitem.sql -------------------------------------------------------------------------------- /models/raw_vault/links/link_supplier_nation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/links/link_supplier_nation.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_inv_inventory_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_inv_inventory_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_inv_part_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_inv_part_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_inv_supp_nation_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_inv_supp_nation_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_inv_supp_region_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_inv_supp_region_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_inv_supplier_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_inv_supplier_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_order_cust_nation_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_order_cust_nation_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_order_cust_region_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_order_cust_region_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_order_customer_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_order_customer_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_order_lineitem_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_order_lineitem_details.sql -------------------------------------------------------------------------------- /models/raw_vault/sats/sat_order_order_details.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/sats/sat_order_order_details.sql -------------------------------------------------------------------------------- /models/raw_vault/t_links/t_link_transactions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/raw_vault/t_links/t_link_transactions.sql -------------------------------------------------------------------------------- /models/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/schema.yml -------------------------------------------------------------------------------- /models/stage/v_stg_inventory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/stage/v_stg_inventory.sql -------------------------------------------------------------------------------- /models/stage/v_stg_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/stage/v_stg_orders.sql -------------------------------------------------------------------------------- /models/stage/v_stg_transactions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/models/stage/v_stg_transactions.sql -------------------------------------------------------------------------------- /packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/packages.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Datavault-UK/automate-dv-demo/HEAD/requirements.txt --------------------------------------------------------------------------------