pbPassingBI
/

Modeling & relationships

Star schema, cardinality, filter flow. 8 cards. Click a card to flip, or use the arrow keys and space bar.

  1. What is a star schema?

    One fact table surrounded by dimension tables, each joined one-to-many from dimension to fact.

  2. Default filter direction?

    From the one side to the many side — dimension filters fact.

  3. Why avoid bidirectional filtering globally?

    It creates ambiguous filter paths and possible circular dependencies. Use CROSSFILTER in a measure instead.

  4. What does USERELATIONSHIP do?

    Activates an inactive relationship for the duration of one CALCULATE expression.

  5. What is a role-playing dimension?

    One dimension used in several roles — e.g. Date joined to OrderDate, ShipDate and DueDate.

  6. Requirements for time intelligence?

    A dedicated, contiguous Date table covering complete years, flagged with Mark as Date Table.

  7. How do you fix a snowflaked dimension?

    Flatten it into a single wide dimension in Power Query.

  8. What is Dual storage mode for?

    Dimensions in a composite model — served from memory when possible, queried at source when joined to DirectQuery facts.