What are the two common schema types
-
Star schema
-
Ring schema
-
Snow flake schema
-
Circular schema
A,C
Correct answer
Explanation
The two primary schema types for data warehouse dimensional modeling are star schema and snowflake schema. Star schema has a central fact table connected directly to dimension tables (denormalized dimensions), while snowflake schema further normalizes dimension tables into sub-dimensions. Snowflake reduces redundancy but adds join complexity; star schema is simpler for queries but has some dimension data duplication.