You are on page 1of 1

The main difference between star schema and snowflake schema is that the star sc hema is highly denormalized

and the snowflake schema is normalized. So the data access latency is less in st ar schema in comparison to snowflake schema. As the star schema is denormalized, the size of the data warehouse will be larg er than that of snowflake schema. The schemas are selected as per the client requirements. Performance wise, star schema is good. But if memory utilization is a major concern, then snow flake schema is better than star schema. Difference Between Star schema and Snowflake Schema Star schema 1. De-Normalized Data Structure 2. Category wise Single Dimension Table 3. More data dependency and redundancy 4. No need to use complicated join 5. Query Results Faster 6. No Parent Table 7. Simple DB Structure Snowflake Schema 1. Normalized Data Structure 2. Dimension table split into many pieces 3. less data dependency and No redundancy 4. Complicated Join 5. Some delay in Query Processing 6. It May contain Parent Table 7. Complicated DB Structure

You might also like