Open In App

Fact Constellation in Data Warehouse modelling

Improve
Improve
Like Article
Like
Save
Share
Report

Fact Constellation is a schema for representing multidimensional model. It is a collection of multiple fact tables having some common dimension tables. It can be viewed as a collection of several star schemas and hence, also known as Galaxy schema. It is one of the widely used schema for Data warehouse designing and it is much more complex than star and snowflake schema. For complex systems, we require fact constellations.


Figure – General structure of Fact Constellation


Here, the pink coloured Dimension tables are the common ones among both the star schemas. Green coloured fact tables are the fact tables of their respective star schemas.

Example:

In above demonstration:

  • Placement is a fact table having attributes: (Stud_roll, Company_id, TPO_id) with facts: (Number of students eligible, Number of students placed).
  • Workshop is a fact table having attributes: (Stud_roll, Institute_id, TPO_id) with facts: (Number of students selected, Number of students attended the workshop).
  • Company is a dimension table having attributes: (Company_id, Name, Offer_package).
  • Student is a dimension table having attributes: (Student_roll, Name, CGPA).
  • TPO is a dimension table having attributes: (TPO_id, Name, Age).
  • Training Institute is a dimension table having attributes: (Institute_id, Name, Full_course_fee).

So, there are two fact tables namely, Placement and Workshop which are part of two different star schemas having dimension tables – Company, Student and TPO in Star schema with fact table Placement and dimension tables – Training Institute, Student and TPO in Star schema with fact table Workshop. Both the star schema have two dimension tables common and hence, forming a fact constellation or galaxy schema.

Advantage: Provides a flexible schema.
Disadvantage: It is much more complex and hence, hard to implement and maintain.


Last Updated : 19 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads