Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

Multidimensional Database Concepts

Lesson 6 of 32 in the free Data Warehousing and Data Mining(Elective-II) notes on Siksha Sarovar, written by Rohit Jangra.

---

6. Multidimensional Database Concepts

Data Warehouses view data as a "Cube" rather than a flat table. This allows users to analyze data across multiple dimensions.

6.1 Fact and Dimension Data

Fact Data

  • Definition: Facts are the quantitative measurements or metrics of the business. They represent "what we are measuring."
  • Characteristics: usually numeric and additive.
  • Examples: Sales Revenue ($), Units Sold, Profit Margin, Inventory Level.
  • Types of Facts:
  1. Additive Facts: Can be summed across all dimensions (e.g., Sales). This is the most flexible type.
  2. Semi-Additive Facts: Can be summed across some dimensions but not others (e.g., Bank Account Balance). You can sum balances across customers, but not across time (the balance is a snapshot at a specific moment).
  3. Non-Additive Facts: Cannot be summed across any dimension (e.g., Unit Price, Ratios, Percentages).

Dimension Data

  • Definition: Dimensions provide the context for the facts. They answer the "Who, What, Where, When, Why" of the data.
  • Characteristics: Usually textual, descriptive, and discrete.
  • Examples:
  • Time Dimension: Date, Month, Quarter, Year.
  • Product Dimension: Product Name, Category, Brand.
  • Location Dimension: Store Name, City, State, Country.
  • Customer Dimension: Name, Age, Gender.