An end-to-end SQL Data Warehouse built using SQL Server, following a Bronze → Silver → Gold layered architecture.
- Bronze – Raw data loaded from CSV files (no transformations)
- Silver – Cleaned, standardized, and deduplicated data
- Gold – Analytics-ready fact and dimension tables (star schema)
- CRM – Customers, products, sales transactions
- ERP – Customer master, locations, product categories
- CSV ingestion using
BULK INSERT - Data cleansing (NULL handling, trimming, standardization)
- Deduplication using window functions
- Business-friendly transformations
- Idempotent loads using
TRUNCATE + INSERT
- fact_sales
- dim_customers
- dim_products
- SQL Server (Docker / Local)
- T-SQL
- VS Code
- Git & GitHub
├── datasets/ # Source CSV files
├── scripts/
│ ├── bronze/ # Raw data loads
│ ├── silver/ # Transformations
│ └── gold/ # Analytics models
├── docs/ # Diagrams & design docs
└── README.md