Scenario: Your company is implementing a data warehouse to analyze sales data from multiple regions. As part of the design process, you need to determine the appropriate schema for the fact and dimension tables. Which schema would you most likely choose and why?

  • Bridge schema
  • Fact constellation schema
  • Snowflake schema
  • Star schema
In this scenario, a Star schema would be the most appropriate choice. It consists of one or more fact tables referencing any number of dimension tables, forming a star-like structure. This schema simplifies queries and ensures better performance due to denormalization, making it suitable for analytical purposes like analyzing sales data across multiple dimensions.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *