MIS 451 Building Business Intelligence Systems Logical Design (5) – Aggregate.

Slides:



Advertisements
Similar presentations
DATAWAREHOUSE FOR BANKING by Amey Aras Deepesh Dhake Hatem Murad Nirav Hamlai.
Advertisements

MIS 451 Building Business Intelligence Systems
Dimensional Modeling Business Intelligence Solutions.
Prof. Navneet Goyal Computer Science Department BITS, Pilani
Dimensional Modeling – Part 2
1 ACCTG 6910 Building Enterprise & Business Intelligence Systems (e.bis) Physical Data Warehouse Design Olivia R. Liu Sheng, Ph.D. Emma Eccles Jones Presidential.
Data Warehousing - 3 ISYS 650. Snowflake Schema one or more dimension tables do not join directly to the fact table but must join through other dimension.
MIS 451 Building Business Intelligence Systems Logical Design (3) – Design Multiple-fact Dimensional Model.
CSE6011 Warehouse Models & Operators  Data Models  relations  stars & snowflakes  cubes  Operators  slice & dice  roll-up, drill down  pivoting.
Data Warehousing (Kimball, Ch.2-4) Dr. Vairam Arunachalam School of Accountancy, MU.
Health & Human Services Data Warehouse Why a Data Warehouse.
Data Warehousing DSCI 4103 Dr. Mennecke Introduction and Chapter 1.
Lecture 5 CS.456 DATABASE DESIGN.
OLAP OPERATIONS. OLAP ONLINE ANALYTICAL PROCESSING OLAP provides a user-friendly environment for Interactive data analysis. In the multidimensional model,
Leaving a Metadata Trail Chapter 14. Defining Warehouse Metadata Data about warehouse data and processing Vital to the warehouse Used by everyone Metadata.
Data warehousing theory and modelling techniques Building Dimensional Models.
Chetan Bhirud Raza Mohammad Abinash Sahoo Online Marketing Giant.
DWH – Dimesional Modeling PDT Genči. 2 Outline Requirement gathering Fact and Dimension table Star schema Inside dimension table Inside fact table STAR.
MD240 - MIS Oct. 4, 2005 Databases & the Data Asset Harrah’s & Allstate Cases.
Data Warehouse Chapter 11. Multiple Files Problem Added complexity of multiple source files Start simple Multiple Source files Extracted data Logic to.
IMS 6217: Data Warehousing / Business Intelligence Part 3 1 Dr. Lawrence West, Management Dept., University of Central Florida Analysis.
DW-1: Introduction to Data Warehousing. Overview What is Database What Is Data Warehousing Data Marts and Data Warehouses The Data Warehousing Process.
Business Intelligence Zamaneh Jahed. What is Business Intelligence? Business Intelligence (BI) is a broad category of applications and technologies for.
Program Pelatihan Tenaga Infromasi dan Informatika Sistem Informasi Kesehatan Ari Cahyono.
Data Warehouse and Business Intelligence Dr. Minder Chen Fall 2009.
DIMENSIONAL MODELLING. Overview Clearly understand how the requirements definition determines data design Introduce dimensional modeling and contrast.
Chapter 1 Adamson & Venerable Spring Dimensional Modeling Dimensional Model Basics Fact & Dimension Tables Star Schema Granularity Facts and Measures.
Data Warehouse. Design DataWarehouse Key Design Considerations it is important to consider the intended purpose of the data warehouse or business intelligence.
OLAP & DSS SUPPORT IN DATA WAREHOUSE By - Pooja Sinha Kaushalya Bakde.
The Data Warehouse “A data warehouse is a subject-oriented, integrated, time-variant, and nonvolatile collection of “all” an organisation’s data in support.
Module 1: Introduction to Data Warehousing and OLAP
Technology In Action Chapter 11 1 Databases and… Databases and their uses Database components Types of databases Database management systems Relational.
BI Terminologies.
MIS2502: Data Analytics The Information Architecture of an Organization.
DEFINING the BUSINESS REQUIREMENTS. Introduction OLTP and DW planning is different in term of requirements clarity Planning DW is about solving users’
Hachim Haddouti, adv. DBMS & DW CSC5301, Ch5 Chapter 5: The Value Chain Adv. DBMS & DW Hachim Haddouti.
Data Staging Data Loading and Cleaning Marakas pg. 25 BCIS 4660 Spring 2012.
DIMENSIONAL MODELING MIS2502 Data Analytics. So we know… Relational databases are good for storing transactional data But bad for analytical data What.
MIS2502: Data Analytics Dimensional Data Modeling
MIS 451 Building Business Intelligence Systems Data Analysis.
UNIT-II Principles of dimensional modeling
Chapter 5 DATA WAREHOUSING Study Sections 5.2, 5.3, 5.5, Pages: & Snowflake schema.
MIS 451 Building Business Intelligence Systems Logical Design (1)
University at BuffaloThe State University of New York The Demo of the HIV/Drug Use Data Warehouse The customer query website of HIV/Drug Use is based on.
What is OLAP?.
Data Warehousing DSCI 4103 Dr. Mennecke Chapter 2.
MIS 451 Building Business Intelligence Systems Data Staging.
The Need for Data Analysis 2 Managers track daily transactions to evaluate how the business is performing Strategies should be developed to meet organizational.
Houston Petroleum Valve Company Data-Mining Project Data Modeling Phase Fouad Alibrahim Mohammad H. Monakes University of Houston Clear Lake University.
Building the Corporate Data Warehouse Pindaro Demertzoglou Data Resource Management.
Copyright © 2016 Pearson Education, Inc. Modern Database Management 12 th Edition Jeff Hoffer, Ramesh Venkataraman, Heikki Topi CHAPTER 9: DATA WAREHOUSING.
OLAP Theory-English version On-Line Analytical processing (Buisness Intelligence) Ing.Skorkovský,CSc Department of Corporate Economy Faculty of Economics.
Jaclyn Hansberry MIS2502: Data Analytics The Things You Can Do With Data The Information Architecture of an Organization Jaclyn.
Introduction BIM Data Mining.
Data warehouse and OLAP
MIS2502: Data Analytics Dimensional Data Modeling
Star Schema.
MIS2502: Data Analytics Dimensional Data Modeling
MIS2502: Data Analytics Dimensional Data Modeling
Inventory is used to illustrate:
MIS2502: Data Analytics Dimensional Data Modeling
On-Line Analytical Processing (OLAP)
DATA WAREHOUSE: THE BUILDING BLOCKS
MIS2502: Data Analytics Dimensional Data Modeling
Data warehouse.
MIS2502: Data Analytics Dimensional Data Modeling
DWH – Dimesional Modeling
Designing a Data Warehouse from the Ground Up
Analysis Services Analysis Services vs. the Data Warehouse vs. OLTP DB
Data Warehousing.
Presentation transcript:

MIS 451 Building Business Intelligence Systems Logical Design (5) – Aggregate

2 F4: Aggregate In data warehouse design, we choose the gain of fact table to be the possible lowest level. Grain: orderline

3 F4: Aggregate To choose the lowest level of fact: is not because analysts want to query on single record is because analysts want to flexibly cut and group records.

4 F4: Aggregate However, keep the most detailed fact records could result in huge-size fact table: TeraBytes slow query

5 F4: Aggregate To keep flexibility of data warehouse, fact tables which store facts in their lowest level need to be kept. To improve query performance, another type of fact table which stores precomputed summaries of detailed facts is required. (Logical solution)

6 F4: Aggregate Aggregate fact table is a fact table that summarize base-level fact table records along one or several dimensions. Aggregate dimension tables is a dimension table that summarize base-level dimension table records.

7 F4: Aggregate Marketing managers check daily product sales by city --- aggregate by city in customer dimension

8 F4: Aggregate Aggregate fact table Aggregate dimension table

9 F4: Aggregate

10 Readings: Chapter 13: p187 – p197