Star Schema
Last updated
Last updated
Star schema is the simplest model used in DWH. It's commonly used in Data Marts.
Star schema is built to streamline the process.
ETL process will produce data from the operational database, transform it into the proper format, and load it into the warehouse.
This Star schema is intended to store the history of placed orders.
The fact table is related to each dimension table by exactly one relation.
Faster aggregations.
Simpler queries. Relatively fewer joins.
Data Integrity is not enforced.
Data redundancy. City > State > Country can be normalized and not repeated.