IT lexicon Database Star schema

Star schema

Database På svenska → Updated: 2026-05-28

The classic data-warehouse model: a central fact table (measures, e.g. sales) surrounded by dimension tables (time, product, customer, store). The shape resembles a star. Ralph Kimball's design method for business intelligence.

Fact table: one row per event, with foreign keys to dimensions + numeric measures (amount, quantity). Dimension tables: descriptive attributes, deliberately denormalized for read speed. Trade-off: redundancy (the same category name repeats) is exchanged for fewer joins → fast aggregation queries. Distinct from a snowflake schema (dimensions normalized into several levels). BI tools (Power BI, Tableau, Looker) are optimized for the star schema. Still standard in modern cloud data warehouses (Snowflake, BigQuery) despite cheap storage.

← Back to the lexicon