<aside>

Table of Contents

</aside>

Project Overview and Data Pipeline


This project presents the design and implementation of a Sales Data Warehouse based on the Medallion Architecture (BronzeSilverGold).

It combines customer, product, and sales data from ERP and CRM systems into a single structure that supports analytics and business reporting.

data_architecture.png

The architecture includes three main layers:

The next diagram shows how data flows from one layer to the next during the ETL process.

data_flow.png

Database Initialization


The init_database.sql script builds the DataWarehouse database and the three schemas: bronze, silver, and gold.

It first drops any existing database with the same name and then recreates it. This keeps the setup clean and repeatable.

🥉 Bronze Layer: Raw Data Storage