Which TWO statements are true about designing a star schema for BI reporting?
Denormalized dimensions allow joining directly to the fact table without additional joins.
Why this answer
Dimension tables in a star schema are intentionally denormalized to reduce the number of joins required for BI queries. This denormalization improves query performance by allowing fact tables to join directly to dimension tables without traversing multiple normalized tables, which is a key design principle for OLAP reporting.
Exam trap
Google Cloud often tests the misconception that dimension tables should be normalized for data integrity, but in star schemas for BI, denormalization is intentional to optimize query performance over normalization.