Open In App

Difference between Star Schema and Snowflake Schema

Last Updated : 21 Feb, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Star Schema: Star schema is the type of multidimensional model which is used for data warehouse. In star schema, The fact tables and the dimension tables are contained. In this schema fewer foreign-key join is used. This schema forms a star with fact table and dimension tables. 
 
Snowflake Schema: Snowflake Schema is also the type of multidimensional model which is used for data warehouse. In snowflake schema, The fact tables, dimension tables as well as sub dimension tables are contained. This schema forms a snowflake with fact tables, dimension tables as well as sub-dimension tables. 
 
Let’s see the difference between Star and Snowflake Schema:

S.NO Star Schema Snowflake Schema
1. In star schema, The fact tables and the dimension tables are contained. While in snowflake schema, The fact tables, dimension tables as well as sub dimension tables are contained.
2. Star schema is a top-down model. While it is a bottom-up model.
3. Star schema uses more space. While it uses less space.
4. It takes less time for the execution of queries. While it takes more time than star schema for the execution of queries.
5. In star schema, Normalization is not used. While in this, Both normalization and denormalization are used.
6. It’s design is very simple. While it’s design is complex.
7. The query complexity of star schema is low. While the query complexity of snowflake schema is higher than star schema.
8. It’s understanding is very simple. While it’s understanding is difficult.
9. It has less number of foreign keys. While it has more number of foreign keys.
10. It has high data redundancy. While it has low data redundancy.

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads