MIS2502: Data Analytics The Information Architecture of an Organization.

Slides:



Advertisements
Similar presentations
Dimensional Modeling.
Advertisements

CHAPTER OBJECTIVE: NORMALIZATION THE SNOWFLAKE SCHEMA.
Database Management3-1 L3 Database Management Santa R. Susarapu Ph.D. Student Virginia Commonwealth University.
Copyright © Starsoft Inc, Data Warehouse Architecture By Slavko Stemberger.
By: Mr Hashem Alaidaros MIS 211 Lecture 4 Title: Data Base Management System.
Chapter 3 Database Management
MIS 451 Building Business Intelligence Systems Logical Design (3) – Design Multiple-fact Dimensional Model.
Chapter 13 The Data Warehouse
1 Introduction Introduction to database systems Database Management Systems (DBMS) Type of Databases Database Design Database Design Considerations.
1 © Prentice Hall, 2002 Chapter 11: Data Warehousing.
Professor Michael J. Losacco CIS 1150 – Introduction to Computer Information Systems Databases Chapter 11.
Components of the Data Warehouse Michael A. Fudge, Jr.
Data Warehousing Alex Ostrovsky CS157B Spring 2007.
Online Analytical Processing (OLAP) Hweichao Lu CS157B-02 Spring 2007.
Data Conversion to a Data warehouse Presented By Sanjay Gunasekaran.
Chapter 1 Overview of Databases and Transaction Processing.
Review Session What is data, what is information, and give a real world example to differentiate these two concepts.
DATA WAREHOUSING IN SQL SERVER 2005/2008 BUSINESS INTELLIGENCE.
OLAP Theory-English version On-Line Analytical processing (Buisness Intzlligence) [Ing.Skorkovský,CSc] KPH_ESF_MU.
Chapter 6: Foundations of Business Intelligence - Databases and Information Management Dr. Andrew P. Ciganek, Ph.D.
DW-1: Introduction to Data Warehousing. Overview What is Database What Is Data Warehousing Data Marts and Data Warehouses The Data Warehousing Process.
MIS2502: Data Analytics Coverting ERD into a DB Schema David Schuff
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 3 Databases and Data Warehouses: Supporting the Analytics-Driven.
AN OVERVIEW OF DATA WAREHOUSING
Business Intelligence Zamaneh Jahed. What is Business Intelligence? Business Intelligence (BI) is a broad category of applications and technologies for.
Presented By: Muhammad Rizvi Raghuram Vempali Surekha Vemuri.
THE INFORMATION ARCHITECTURE OF THE ORGANIZATION MIS2502 Data Analytics.
Lecturer: Gareth Jones. How does a relational database organise data? What are the principles of a database management system? What are the principal.
Data Warehousing.
Technology In Action Chapter 11 1 Databases and… Databases and their uses Database components Types of databases Database management systems Relational.
October 28, Data Warehouse Architecture Data Sources Operational DBs other sources Analysis Query Reports Data mining Front-End Tools OLAP Engine.
Decision Support and Date Warehouse Jingyi Lu. Outline Decision Support System OLAP vs. OLTP What is Date Warehouse? Dimensional Modeling Extract, Transform,
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
1 Technology in Action Chapter 11 Behind the Scenes: Databases and Information Systems Copyright © 2010 Pearson Education, Inc. Publishing as Prentice.
MIS2502: Data Analytics The Things You Can Do With Data
Chapter 5 DATA WAREHOUSING Study Sections 5.2, 5.3, 5.5, Pages: & Snowflake schema.
Building Dashboards SharePoint and Business Intelligence.
Business Intelligence Transparencies 1. ©Pearson Education 2009 Objectives What business intelligence (BI) represents. The technologies associated with.
MIS2502: Data Analytics Relational Data Modeling
© 2003 Prentice Hall, Inc.3-1 Chapter 3 Database Management Information Systems Today Leonard Jessup and Joseph Valacich.
Data Warehousing.
Business Intelligence Training Siemens Engineering Pakistan Zeeshan Shah December 07, 2009.
Data Resource Management Agenda What types of data are stored by organizations? How are different types of data stored? What are the potential problems.
MIS2502: Data Analytics The Things You Can Do With Data Amy Lavin
1 Copyright © 2009, Oracle. All rights reserved. Oracle Business Intelligence Enterprise Edition: Overview.
What Do You Do With Data? Gather Store Retrieve Interpret.
DIMENSIONAL MODELING MIS2502 Data Analytics. So we know… Relational databases are good for storing transactional data But bad for analytical data What.
Chapter 1 Overview of Databases and Transaction Processing.
11 Database The ultimate in data organization. 2 Database Management Systems (DBMS)  Application software designed to capture and analyze data  Four.
Jaclyn Hansberry MIS2502: Data Analytics The Things You Can Do With Data The Information Architecture of an Organization Jaclyn.
Intro to MIS – MGS351 Databases and Data Warehouses
MIS2502: Data Analytics The Things You Can Do With Data
Data warehouse and OLAP
Chapter 13 The Data Warehouse
MIS2502: Data Analytics Dimensional Data Modeling
MIS2502: Data Analytics Dimensional Data Modeling
MIS2502: Data Analytics Dimensional Data Modeling
MIS5101: Data Analytics The Things You Can Do With Data
MIS2502: Data Analytics Dimensional Data Modeling
Basic Concepts in Data Management
MIS2502: Review for Exam 1 JaeHwuen Jung
Unidad II Data Warehousing Interview Questions
MIS2502: Data Analytics The Information Architecture of an Organization David Schuff
MIS2502: Data Analytics The Information Architecture of an Organization Acknowledgement: David Schuff.
MIS2502: Data Analytics The Information Architecture of an Organization Aaron Zhi Cheng Acknowledgement:
MIS2502: Data Analytics Relational Data Modeling
MIS2502: Review for Exam 1 Aaron Zhi Cheng
Data Warehousing Concepts
MIS2502: Data Analytics Things You Can Do With Data & Information Architecture Zhe (Joe) Deng
Presentation transcript:

MIS2502: Data Analytics The Information Architecture of an Organization

What Do You Do With Data? GatherStore RetrieveInterpret

The Information Architecture of an Organization Transactional Database Analytical Data Store Stores real-time transactional data Stores historical transactional and summary data Data entry Data extraction Data analysis Called OLTP: Online transaction processing Called OLTP: Online transaction processing Called OLAP: Online analytical processing Called OLAP: Online analytical processing

The Transactional Database In business, a transaction is the exchange of information, goods, or services. For databases, a transaction is an action performed in a database management system. Operational databases deal with both: they store information about business transactions using database transactions Examples of transactions – Purchase a product – Enroll in a course – Hire an employee Data is in real-time – Reflects current state – How things are “now” Stores real-time, transactional data

The Relational Paradigm How transactional data is collected and stored Primary Goal: Minimize redundancy – Reduce errors – Less space required Most database management systems are based on the relational paradigm – Oracle, Microsoft Access, SQL Server Which of these do you think is more important today ?

The Relational Database Online Retailer Example A series of tables with logical associations between them The associations (relationships) allow the data to be combined Product ProductID Name Description Price Shipping SalesRank Review ReviewID ProductID StarRating Text ReviewerName Likes

Why more than one table? Every review has an associated product Every product can have a review Products and reviews have a unique ID number Split the details off into separate tables This is good because: Information is entered and stored once Minimizes redundancy This is good because: Information is entered and stored once Minimizes redundancy Product ProductID Name Description Price Shipping SalesRank Review ReviewID ProductID StarRating Text ReviewerName Likes

Analyzing transactional data Can be difficult to do from a relational database Having multiple tables is good for storage and data integrity, but bad for analysis – Tables must be “joined” together before analysis can be done The solution is the Analytical Data Store Operational databases are optimized for storage efficiency, not retrieval Analytical databases are optimized for retrieval and analysis, not storage efficiency and data integrity

The Analytical Data Store Stores historical and summarized data – “Historical” means we keep everything Data is extracted from the operational database and reformatted for the analytical database Operational Database Analytical Database Query Data conversion Extract Transform Load Query We’ll discuss this in much more detail later in the course!!

The Dimensional Paradigm Data is stored like this around a business event… …and can be summarized like this for analysis…

Dimensional Data and the Data Cube Sales ID Qty. Sold Total Price Prod. ID Prod. Name Prod. Price Prod. Weight Store ID Store Address Store City Store State Store Type Time ID DayMonthYear Product Dimension Store Dimension Time Dimension Sales Fact …or it can be expanded in detail like this so that data mining (complex statistical analysis) can be done.

Comparing Operational and Analytical Data Stores Operational Data StoreAnalytical Data Store Based on Relational paradigm Based on Dimensional paradigm Storage of real-time transactional data Storage of historical transactional data Optimized for storage efficiency and data integrity Optimized for data retrieval and summarization Supports day-to-day operations Supports periodic and on- demand analysis

Data interpretation, visualization, communication The agenda for the course Weeks 1 through 5 Weeks 6 through 9 Weeks 10 through 14 Transactional Database Analytical Data Store Stores real-time transactional data Stores historical transactional and summary data Data entry Data extraction Data analysis