Courseiva
Prepare the datamediumMultiple ChoiceObjective-mapped

Best Practice for Dimension Tables in a Star Schema

You are preparing data from multiple sources for a Power BI report. You need to create a star schema with a single fact table and several dimension tables. Which of the following is a best practice when designing the data model?

Quick Answer

Giving each dimension table a unique key and descriptive attributes is the answer because that combination is what makes a star schema actually function the way it's meant to. The unique key, whether it's a natural key from the source system or a surrogate key generated during modeling, is what allows a clean relationship to form between the dimension table and the fact table, so every fact row can be reliably traced back to exactly one matching row in each dimension. The descriptive attributes are what make that relationship useful to a report author and end user in practice, since they're the fields people actually filter, group, and slice by, rather than raw identifiers. Without a unique key, relationships become ambiguous or duplicate rows on join; without descriptive attributes, a technically correct dimension table still can't support meaningful slicing and filtering in a report. This is really the definition of what separates a working dimension table from a table that merely sits near a fact table without earning the name. When you evaluate a proposed data model against star schema best practices, check both properties together: does every dimension have a dependable key for the relationship, and does it carry the attributes people will actually want to filter and group by.

⚠ Common exam trap

Microsoft often tests the misconception that normalizing dimension tables (snowflake schema) is a best practice for performance, but in Power BI, denormalized star schemas are preferred to reduce joins and leverage VertiPaq compression.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Ensure each dimension table has a unique key and contains descriptive attributes.

In a star schema, dimension tables should have a unique key (surrogate or natural) and contain descriptive attributes to enable filtering and grouping in Power BI. This ensures efficient relationships with the fact table and supports intuitive report interactions. Option C directly aligns with this best practice.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Include calculated measures in dimension tables.

    Why it's wrong here

    Measures belong in fact tables or as separate calculated columns; dimension tables should contain only attributes.

  • Normalize dimension tables into multiple related tables.

    Why it's wrong here

    Snowflake schemas can complicate reporting; denormalized dimensions are preferred for simplicity and performance.

  • Ensure each dimension table has a unique key and contains descriptive attributes.

    Why this is correct

    This is a fundamental best practice for star schema design.

  • Use natural keys from the source system as the primary key in dimension tables.

    Why it's wrong here

    Natural keys can change; surrogate keys are more stable and recommended in data warehouses.

About these practice questions

This PL-300 question is part of Courseiva's 217-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more way this is tested on PL-300

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. You are preparing data for a star schema. Which THREE types of tables are typically included in a star schema?

medium
  • A.Staging tables
  • B.Bridge tables
  • C.Dimension tables
  • D.Date tables
  • E.Fact tables

Why C: In a star schema, dimension tables (C) provide descriptive attributes for the measures stored in fact tables. They are denormalized to optimize query performance in tools like Power BI, enabling fast slicing and dicing of data without complex joins.

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PL-300 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PL-300 exam.