InterviewSolution
Saved Bookmarks
| 1. |
Explain the Snowflake schema. |
|
Answer» Adding additional dimension tables to a Star Schema makes it a Snowflake Schema. In the Snowflake schema model, multiple hierarchies of dimension tables surround a central fact table. Alternatively, a dimension table is called a snowflake if its low-cardinality attribute has been segmented into separate NORMALIZED tables. These normalized tables are then joined with referential constraints (foreign key constraints) to the original dimensions table. Snowflake schema complexity increases linearly with the level of HIERARCHY in the dimension tables. Advantages
Disadvantages |
|