INFO 321, Database Systems, Semester

Size: px
Start display at page:

Download "INFO 321, Database Systems, Semester 2 2012"

Transcription

1 References References INFO 321 Chapter 3: Decision Support Systems Department of Information Science Semester 2, 2012 General Kifer Chapter 17 Silberschatz (5th ed.) Chapter 18 Data Warehousing for Cavemen (see Blackboard Other Documents Decision Support Systems) Coronel, Morris & Rob (9th ed.) Chapter 13 Mannino (3rd ed.) Chapter 16 Oracle11g documentation Data Warehousing Guide OLAP User s Guide OLAP DML Reference Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO What is decision support? (Kifer 1.4, 17.1; Silberschatz 18.1) Decision-making occurs at the operational level (see also Figure 3 1) Decision-making occurs at the tactical level (see also Figure 3 1) Data timely, relevant, well-visualised information. Tune information and presentation to specific purposes. Very short-term. Well-defined inputs. Produced by existing applications or simple front-end tools. Line managers. Short-term. Less well-defined inputs. Middle managers. Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Chapter 3: Decision Support Systems Lecture Slides (1 51) 61

2 Decision-making occurs at the strategic level (see also Figure 3 1) Long-term. Ill-defined inputs. Often cannot use pre-existing applications Decision Support Systems (DSS); or Executive Information Systems (EIS). Senior managers. Operational vs. decision support queries Operational How many brass reciprocating hammers do we have in stock? How much electrical twine did we sell yesterday? Decision support How many brass reciprocating hammers were sold to customers aged in large North Island towns over each of the last six months? If we double the advertising budget for electrical twine, how might that affect revenues for the next six months? There is a strong need for DSS Modern business very complex. Shrinking time frame for decision-making. Data from multiple sources: (see Figure 3 1) internal vs. external formal vs. informal must be sensibly integrated Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Components of a DSS (adapted from Coronel, Morris & Rob, Figure 13.2) There are many types of decision support tool Operational vs. decision support data (Coronel, Morris & Rob, Table 13.4; see also Mannino ) External data Operational data Data extraction, transformation and loading Decision support data Data store Decision Support System Business data analysis models End-user query tool Sales Expenses Profits End-user presentation and visualisation tool Basic Ad hoc query tools (SQL?). Graph and report generators. Spreadsheets (small data sets only!). More advanced Data warehouses. Online analytical processing (OLAP). Characteristic Operational data Decision support data Data currency Current operations Historic data Real-time data Snapshot of company data Time component (week/month/year) Granularity Atomic, detailed data Summarised data Summarisation level Low; some aggregation High; heavily aggregated Data structure Highly normalised Non-normalised Mostly RDBMS Complex structures Some relational; mostly multidimensional Transaction type Mostly updates Mostly queries Transaction volumes High update volume Periodic loads and summary calculations Transaction speed Updates are critical Retrievals are critical Query activity Low to medium High Query scope Narrow range Broad range Query complexity Simple to medium Very complex Data volumes Hundreds of MiB GiB Hundreds of GiB TiB Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Chapter 3: Decision Support Systems Lecture Slides (1 51) 62

3 Timespan is a key difference Granularity is a key difference Dimensionality is a key difference (Kifer 17.2; Silberschatz ) Operational Very short (current transactions). Decision support Long (past and future). Data may not be current. Operational Represent specific transactions (atomic). Decision support Varying levels of aggregation (atomic highly summarised). Drilling down vs. rolling up. Operational Flat (tables of atomic transactions). ** Decision support Many dimensions. View orders by region per quarter (2D). Compare sales of products during the last six months by region, city, store & customer (4D). Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Dimensionality is a key difference (adapted from Coronel, Morris & Rob, Figure 13.13; see also Kifer 17.2 & Silberschatz ) Data warehouses store decision support data (Mannino ; Coronel, Morris & Rob Table 13.7) Data warehouse data are integrated (Coronel, Morris & Rob Table 13.7) Product Ball Bat Club Location AKL CHC DUD April May June Time Conceptual three-dimensional cube of sales by product, location and time. Sales facts are stored in the cells of the intersection of each product, time and location dimension value. Designed and optimised for decision support data. Internal structure quite different from operational databases: aggregated denormalised data from multiple internal/external sources Operational database data Mostly internal sources. Multiple representations. Data warehouse data Both internal and external sources. Transformed, cleaned and summarised during integration. Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Chapter 3: Decision Support Systems Lecture Slides (1 51) 63

4 Data warehouse data are subject-oriented (Coronel, Morris & Rob Table 13.7) Operational database data Functional or process-oriented (invoices, payments, products). Data warehouse data Facts or measures organised by major subject areas (sales, marketing, etc.). Held according to dimensions or variables of interest: product, customer, region,... Aggregated data from many operational tables. Queries tuned to specific decision-making needs. Data warehouse data are time-variant (Coronel, Morris & Rob Table 13.7) Operational database data Current transactions with precise time stamps. Data warehouse data Time an important dimension for almost all subject areas. Data aggregated by time, e.g., sales by week, month, quarter, year... Historical focus (past and future). Data warehouse data are non-volatile (Coronel, Morris & Rob Table 13.7) Operational database data Frequent changes dynamic. Often archived periodically. Data warehouse data Read only (occasional batch updates) static. Historical data retained always growing (GiB... ). Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Defining a data warehouse in more detail (Silberschatz ; Table 3 2) Data marts are small, specialised data warehouses Data warehouse analysis is more demanding (Mannino ) Read-only database optimised for data analysis and query processing. Data from: legacy /archived databases operational databases other sources Optimisation includes: decisions on aggregations important dimensions appropriate indexing and physical design Focused subset of data. Clusters of data marts surrounding central enterprise data warehouse? Some queries may be impossible if not designed for. Not as flexible for ad hoc queries. Users must identify intended use. Data derived from both internal and external sources (e.g., Internet: NZX, Dow Jones, NASDAQ). Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Chapter 3: Decision Support Systems Lecture Slides (1 51) 64

5 The difficulty of data warehouse design (The Standish Group (1997), The Meta Myth ; Facts are a key design aspect (Kifer pp ; Mannino ) Dimensions are a key design aspect (Kifer pp ; Mannino ) Interviewer: How many data warehouses have you had? Data warehouser: We have had eight. Interviewer: To what do you attribute so many warehouses? Data warehouser: Seven mistakes... A value that we are interested in. Examples: revenue, profits, cost, number of sales. Also known as measures. A factor/variable that influences the facts. Examples: time, product, customer, salesrep, location. Each has attributes. Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Time as a dimension (see also Mannino ) Star schemas for relational data warehouses (Kifer pp ; Silberschatz ; Figure 3 3; see also Data Warehousing Guide ch. 2) Star schemas for relational data warehouses (Kifer pp ; Silberschatz ; Figure 3 3; see also Data Warehousing Guide ch. 2) Dimension table Central fact table. Not as simple as it seems! Cluster of related dimension tables. Granularity (unit size): year, month, week, day, hour. Alternate units (periodicity): season, financial year, quarter. Needed because of inadequate physical data independence? (denormalised) Partial normalisation snowflake or starflake structure (also constellation ). Dimension table Fact table Dimension table Dimension table Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Chapter 3: Decision Support Systems Lecture Slides (1 51) 65

6 Three steps to populate a data warehouse (Kifer 17.6; Mannino 16.4) Performance tuning for data warehouses (Kifer 17.5; Data Warehousing Guide ch. 3; see also INFO 321 Chapter 1) Performance tuning for data warehouses (Kifer 17.5; Data Warehousing Guide ch. 3; see also INFO 321 Chapter 1) Extraction: obtaining data from sources. Transformation: altering form of data (includes cleaning). Loading: adding data to warehouse. Possibly intermediate data staging steps. Critical for successful data warehouses. Complex queries denormalisation (fewer joins). Mostly read-only + complex queries index heavily. Other techniques: normalise dimension tables multiple fact tables for different aggregation levels physical tuning: partitioning, replication, etc. B-tree indexes and hashing generally useful. Bitmap indexes particularly for counting by category queries. Integrated indexes for dimension tables? Function-based indexes could be useful? (Time queries?) Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Oracle11g supports data warehouses (Oracle11g Data Warehousing Guide) The simple approach Use distribution and replication services. Scales poorly. Oracle data mart suite Add-on for constructing Oracle data marts. GUI interface; design & ETL modules; third-party tools. Oracle Data Integrator Enterprise Edition Build & manage high-end, complex data warehouses. Combines Oracle Data Integrator and Oracle Warehouse Builder. Oracle11g supports data warehouses (Oracle11g Data Warehousing Guide) Bitmap & function-based indexes, index-organised tables. Bitmap join indexes. Other relevant tools: SQL*Loader (possibly in conjunction with Transparent Gateways) export and import (basic) Also see Oracle s web site (good luck!). OLAP tools enable complex data processing (Silberschatz 18.2; Figure 3 4) Complex analysis of multidimensional data. Spreadsheet-like simplicity. Data stored in warehouse or tool s internal proprietary database. Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Chapter 3: Decision Support Systems Lecture Slides (1 51) 66

7 OLAP tools have many capabilities A simple OLAP example using Excel (Kifer 17.3; see also Silberschatz ) Slice and dice enables dynamic visualisation (adapted from Coronel, Morris & Rob, Figure 13.14; see also Kifer ) Data transformation. Business modelling. Statistical analysis. Powerful GUI query facility. Visualisation (graphics). Sales subject area dimensions: customer, salesreps, product, region, time,... View sales aggregated by dimensions. Dynamically alter presentation: drill down/roll up slice and dice (see next slide) pivot the table (see demo) highlight exceptions (e.g., high loss products) invent new columns (e.g., % sales revenue) Product Ball Bat Club Location AKL CHC April May June DUD Store manager s view of sales data Product manager s view of sales data Time Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Another example: Quicken Another example: Quicken Another example: Quicken Intuit s Quicken provides some simple OLAP-like features. Drill down to expand a summarised category. Drill down to expenses by month for a particular category. Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Chapter 3: Decision Support Systems Lecture Slides (1 51) 67

8 Another example: Quicken OLAP data may be stored in different ways (Kifer 17.4; Silberschatz ) Oracle11g SQL has extensive OLAP support (Oracle11g SQL Language Reference: SELECT; see also Kifer & Silberschatz ) Drill down to individual category transactions within a month. Internal proprietary database (often MDD). Access external databases (data warehouses?): relational (ROLAP) multidimensional (MOLAP) both (HOLAP) GROUP BY CUBE (<columns>). GROUP BY ROLLUP (<columns>). GROUPING SETS (different from SQL:1999 s GROUPING function). MODEL clause. Various analytic functions, including RANK, PARTITION BY. (see Oracle11g SQL Language Reference: Analytic Functions) Crosstabs using PIVOT and UNPIVOT.... Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Data mining may find hidden trends (Kifer 17.7; Silberschatz 18.4) There are many data mining techniques (Kifer ; Silberschatz 18.4) Some examples of data mining OLAP & data warehousing help identify trends and relationships. BUT: Some relationships too complex or subtle to easily notice. Data mining tools claim to sift through databases and find unrecognised relationships and trends. Neural networks. Complex visualisation. Genetic algorithms (evolve a solution). Advanced statistical analysis (traditional). See INFO 331 for many of these. Beer and nappies (probably apocryphal). Fraud detection (phone, credit card). MCI s statistical profiles. Risk assessment for car insurance (FIG). NBA strategy analysis. But data mining is not foolproof... Semester 2, 2012 INFO Semester 2, 2012 INFO Semester 2, 2012 INFO Chapter 3: Decision Support Systems Lecture Slides (1 51) 68

9 Figure 3 1: Sources of information Table 3 2: Twelve rules that define a data warehouse Bill Inmon is widely referred to as the father of data warehouses. In 1994, he and Chuck Kelley defined a list of twelve rules defining a data warehouse. 1. The data warehouse and operational databases are separated. 2. Data warehouse data are integrated. 3. A data warehouse contains historical data over a long time horizon. 4. Data warehouse data are a snapshot captured at a particular point in time. 5. Data warehouse data are subject-oriented. 6. A data warehouse is mainly read-only with periodic batch updates from operational data. No online updates are allowed. 7. The data warehouse development cycle is data-driven, whereas the classical systems development approach is process-driven A data warehouse contains data at several levels of detail: current detail data, old detail data, lightly summarised and highly summarised data. 9. Database operations in a data warehouse are typically read-only transactions on very large data sets, whereas in an operational database, there are typically many update transactions to a few data entities at a time. 10. A data warehouse has a system that tracks data sources, transformations and storage. SOURCE: Unknown 11. Metadata are critical for a data warehouse, as they identify and define all data elements. Metadata provide the source, transformation, integration, storage, usage, relationships and history of each data element A data warehouse contains a charge-back mechanism for resource usage, in order to enforce optimal use of data by end users. 3 INFO 321 Chapter 3: Decision Support Systems F-1 1 There are many who would argue with the latter claim. 2 This sounds suspiciously similar to number This one seems somewhat out of place, leaving one to wonder whether it was included simply to ensure that there were twelve rules! INFO 321 Chapter 3: Decision Support Systems F-2 Chapter 3: Decision Support Systems Figures & Examples ( ) 69

10 Figure 3 3: Star schemas Figure 3 4: Operational vs. multidimensional data (a) Orders star schema PRODUCT PRODUCT_ID DESCRIPTION PROD_TYPE_ID BRAND COLOUR SIZE PACKAGE 3000 rows VENDOR VENDOR_ID VENDOR_NAME 50 rows (b) Sales star schema LOCATION LOCATION_ID DESCRIPTION REGION_ID STATE CITY 25 rows PERSON PERSON_ID NAME GENDER 125 rows ORDER TIME_ID PRODUCT_ID VENDOR_ID QUANTITY PRICE AMOUNT TIME TIME_ID YEAR QUARTER MONTH WEEK DAY rows 1827 rows (5 years) Daily aggregates by product and vendor SOURCE: adapted from Rob & Coronel, Figure SALE TIME_ID LOCATION_ID PERSON_ID PRODUCT_ID QUANTITY PRICE AMOUNT rows Daily aggregates by store, person and product SOURCE: adapted from Rob & Coronel, Figure TIME TIME_ID YEAR QUARTER MONTH WEEK DAY 1827 rows PRODUCT PRODUCT_ID DESCRIPTION PROD_TYPE_ID BRAND COLOUR SIZE PACKAGE 3000 rows INVOICE_HEADER INV_NUM INV_DATE CUST_NO Customer Dimension Circuit Central Small Bytes Computer House Totals 15-May May May May May (Circuit Central) (Small Bytes) (Circuit Central) (Small Bytes) (Computer House) INVOICE_HEADER INV_NUM PROD_NUM LINE_PRICE LINE_QTY 2034 M34661 $ D99280 $ D44346 $ M34661 $ M34661 $ C74316 $ D44346 $ S64371 $ Time Dimension 15-May May-2007 $1, $ Sales are located at the intersection of a customer row and a time column Operational View of Sales Two-dimensional View of Sales $1, $2, $ $2, $4, (Microsoft Wireless Mouse) (SanDisk USB Flash Drive, 8 GB) (Seagate Hard Drive, 2 TB) (Microsoft Wireless Mouse) (Microsoft Wireless Mouse) (D-Link 4-Port Ethernet Switch) (Seagate Hard Drive, 2 TB) (Creative Speaker System) Totals $2, $3, $ $6, Aggregrations are calculated for both dimensions SOURCE: adapted from Coronel, Morris & Rob, Figure 13.5 $Id: Chapter4figures.tex,v /08/09 05:06:43 nstanger Exp $ INFO 321 Chapter 3: Decision Support Systems F-3 INFO 321 Chapter 3: Decision Support Systems F-4 Chapter 3: Decision Support Systems Figures & Examples ( ) 70

Part 22. Data Warehousing

Part 22. Data Warehousing Part 22 Data Warehousing The Decision Support System (DSS) Tools to assist decision-making Used at all levels in the organization Sometimes focused on a single area Sometimes focused on a single problem

More information

Fluency With Information Technology CSE100/IMT100

Fluency With Information Technology CSE100/IMT100 Fluency With Information Technology CSE100/IMT100 ),7 Larry Snyder & Mel Oyler, Instructors Ariel Kemp, Isaac Kunen, Gerome Miklau & Sean Squires, Teaching Assistants University of Washington, Autumn 1999

More information

14. Data Warehousing & Data Mining

14. Data Warehousing & Data Mining 14. Data Warehousing & Data Mining Data Warehousing Concepts Decision support is key for companies wanting to turn their organizational data into an information asset Data Warehouse "A subject-oriented,

More information

Copyright 2007 Ramez Elmasri and Shamkant B. Navathe. Slide 29-1

Copyright 2007 Ramez Elmasri and Shamkant B. Navathe. Slide 29-1 Slide 29-1 Chapter 29 Overview of Data Warehousing and OLAP Chapter 29 Outline Purpose of Data Warehousing Introduction, Definitions, and Terminology Comparison with Traditional Databases Characteristics

More information

1. OLAP is an acronym for a. Online Analytical Processing b. Online Analysis Process c. Online Arithmetic Processing d. Object Linking and Processing

1. OLAP is an acronym for a. Online Analytical Processing b. Online Analysis Process c. Online Arithmetic Processing d. Object Linking and Processing 1. OLAP is an acronym for a. Online Analytical Processing b. Online Analysis Process c. Online Arithmetic Processing d. Object Linking and Processing 2. What is a Data warehouse a. A database application

More information

Data Warehousing: Data Models and OLAP operations. By Kishore Jaladi kishorejaladi@yahoo.com

Data Warehousing: Data Models and OLAP operations. By Kishore Jaladi kishorejaladi@yahoo.com Data Warehousing: Data Models and OLAP operations By Kishore Jaladi kishorejaladi@yahoo.com Topics Covered 1. Understanding the term Data Warehousing 2. Three-tier Decision Support Systems 3. Approaches

More information

OLAP and OLTP. AMIT KUMAR BINDAL Associate Professor M M U MULLANA

OLAP and OLTP. AMIT KUMAR BINDAL Associate Professor M M U MULLANA OLAP and OLTP AMIT KUMAR BINDAL Associate Professor Databases Databases are developed on the IDEA that DATA is one of the critical materials of the Information Age Information, which is created by data,

More information

Data W a Ware r house house and and OLAP II Week 6 1

Data W a Ware r house house and and OLAP II Week 6 1 Data Warehouse and OLAP II Week 6 1 Team Homework Assignment #8 Using a data warehousing tool and a data set, play four OLAP operations (Roll up (drill up), Drill down (roll down), Slice and dice, Pivot

More information

DATA WAREHOUSING AND OLAP TECHNOLOGY

DATA WAREHOUSING AND OLAP TECHNOLOGY DATA WAREHOUSING AND OLAP TECHNOLOGY Manya Sethi MCA Final Year Amity University, Uttar Pradesh Under Guidance of Ms. Shruti Nagpal Abstract DATA WAREHOUSING and Online Analytical Processing (OLAP) are

More information

Basics of Dimensional Modeling

Basics of Dimensional Modeling Basics of Dimensional Modeling Data warehouse and OLAP tools are based on a dimensional data model. A dimensional model is based on dimensions, facts, cubes, and schemas such as star and snowflake. Dimensional

More information

2074 : Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000

2074 : Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 2074 : Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 Introduction This course provides students with the knowledge and skills necessary to design, implement, and deploy OLAP

More information

DATA WAREHOUSING - OLAP

DATA WAREHOUSING - OLAP http://www.tutorialspoint.com/dwh/dwh_olap.htm DATA WAREHOUSING - OLAP Copyright tutorialspoint.com Online Analytical Processing Server OLAP is based on the multidimensional data model. It allows managers,

More information

DATA CUBES E0 261. Jayant Haritsa Computer Science and Automation Indian Institute of Science. JAN 2014 Slide 1 DATA CUBES

DATA CUBES E0 261. Jayant Haritsa Computer Science and Automation Indian Institute of Science. JAN 2014 Slide 1 DATA CUBES E0 261 Jayant Haritsa Computer Science and Automation Indian Institute of Science JAN 2014 Slide 1 Introduction Increasingly, organizations are analyzing historical data to identify useful patterns and

More information

Data Warehouse: Introduction

Data Warehouse: Introduction Base and Mining Group of Base and Mining Group of Base and Mining Group of Base and Mining Group of Base and Mining Group of Base and Mining Group of Base and Mining Group of base and data mining group,

More information

Data Warehousing. Read chapter 13 of Riguzzi et al Sistemi Informativi. Slides derived from those by Hector Garcia-Molina

Data Warehousing. Read chapter 13 of Riguzzi et al Sistemi Informativi. Slides derived from those by Hector Garcia-Molina Data Warehousing Read chapter 13 of Riguzzi et al Sistemi Informativi Slides derived from those by Hector Garcia-Molina What is a Warehouse? Collection of diverse data subject oriented aimed at executive,

More information

Bussiness Intelligence and Data Warehouse. Tomas Bartos CIS 764, Kansas State University

Bussiness Intelligence and Data Warehouse. Tomas Bartos CIS 764, Kansas State University Bussiness Intelligence and Data Warehouse Schedule Bussiness Intelligence (BI) BI tools Oracle vs. Microsoft Data warehouse History Tools Oracle vs. Others Discussion Business Intelligence (BI) Products

More information

Week 13: Data Warehousing. Warehousing

Week 13: Data Warehousing. Warehousing 1 Week 13: Data Warehousing Warehousing Growing industry: $8 billion in 1998 Range from desktop to huge: Walmart: 900-CPU, 2,700 disk, 23TB Teradata system Lots of buzzwords, hype slice & dice, rollup,

More information

Outline. Data Warehousing. What is a Warehouse? What is a Warehouse?

Outline. Data Warehousing. What is a Warehouse? What is a Warehouse? Outline Data Warehousing What is a data warehouse? Why a warehouse? Models & operations Implementing a warehouse 2 What is a Warehouse? Collection of diverse data subject oriented aimed at executive, decision

More information

BUILDING BLOCKS OF DATAWAREHOUSE. G.Lakshmi Priya & Razia Sultana.A Assistant Professor/IT

BUILDING BLOCKS OF DATAWAREHOUSE. G.Lakshmi Priya & Razia Sultana.A Assistant Professor/IT BUILDING BLOCKS OF DATAWAREHOUSE G.Lakshmi Priya & Razia Sultana.A Assistant Professor/IT 1 Data Warehouse Subject Oriented Organized around major subjects, such as customer, product, sales. Focusing on

More information

Introduction to Data Warehousing. Ms Swapnil Shrivastava swapnil@konark.ncst.ernet.in

Introduction to Data Warehousing. Ms Swapnil Shrivastava swapnil@konark.ncst.ernet.in Introduction to Data Warehousing Ms Swapnil Shrivastava swapnil@konark.ncst.ernet.in Necessity is the mother of invention Why Data Warehouse? Scenario 1 ABC Pvt Ltd is a company with branches at Mumbai,

More information

Data Warehousing Systems: Foundations and Architectures

Data Warehousing Systems: Foundations and Architectures Data Warehousing Systems: Foundations and Architectures Il-Yeol Song Drexel University, http://www.ischool.drexel.edu/faculty/song/ SYNONYMS None DEFINITION A data warehouse (DW) is an integrated repository

More information

Overview. Data Warehousing and Decision Support. Introduction. Three Complementary Trends. Data Warehousing. An Example: The Store (e.g.

Overview. Data Warehousing and Decision Support. Introduction. Three Complementary Trends. Data Warehousing. An Example: The Store (e.g. Overview Data Warehousing and Decision Support Chapter 25 Why data warehousing and decision support Data warehousing and the so called star schema MOLAP versus ROLAP OLAP, ROLLUP AND CUBE queries Design

More information

LITERATURE SURVEY ON DATA WAREHOUSE AND ITS TECHNIQUES

LITERATURE SURVEY ON DATA WAREHOUSE AND ITS TECHNIQUES LITERATURE SURVEY ON DATA WAREHOUSE AND ITS TECHNIQUES MUHAMMAD KHALEEL (0912125) SZABIST KARACHI CAMPUS Abstract. Data warehouse and online analytical processing (OLAP) both are core component for decision

More information

CS2032 Data warehousing and Data Mining Unit II Page 1

CS2032 Data warehousing and Data Mining Unit II Page 1 UNIT II BUSINESS ANALYSIS Reporting Query tools and Applications The data warehouse is accessed using an end-user query and reporting tool from Business Objects. Business Objects provides several tools

More information

Course 803401 DSS. Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization

Course 803401 DSS. Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization Oman College of Management and Technology Course 803401 DSS Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization CS/MIS Department Information Sharing

More information

Designing a Dimensional Model

Designing a Dimensional Model Designing a Dimensional Model Erik Veerman Atlanta MDF member SQL Server MVP, Microsoft MCT Mentor, Solid Quality Learning Definitions Data Warehousing A subject-oriented, integrated, time-variant, and

More information

Data Warehousing and Decision Support. Introduction. Three Complementary Trends. Chapter 23, Part A

Data Warehousing and Decision Support. Introduction. Three Complementary Trends. Chapter 23, Part A Data Warehousing and Decision Support Chapter 23, Part A Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke 1 Introduction Increasingly, organizations are analyzing current and historical

More information

Lection 3-4 WAREHOUSING

Lection 3-4 WAREHOUSING Lection 3-4 DATA WAREHOUSING Learning Objectives Understand d the basic definitions iti and concepts of data warehouses Understand data warehousing architectures Describe the processes used in developing

More information

OLAP and Data Mining. Data Warehousing and End-User Access Tools. Introducing OLAP. Introducing OLAP

OLAP and Data Mining. Data Warehousing and End-User Access Tools. Introducing OLAP. Introducing OLAP Data Warehousing and End-User Access Tools OLAP and Data Mining Accompanying growth in data warehouses is increasing demands for more powerful access tools providing advanced analytical capabilities. Key

More information

CSE 544 Principles of Database Management Systems. Magdalena Balazinska Fall 2007 Lecture 16 - Data Warehousing

CSE 544 Principles of Database Management Systems. Magdalena Balazinska Fall 2007 Lecture 16 - Data Warehousing CSE 544 Principles of Database Management Systems Magdalena Balazinska Fall 2007 Lecture 16 - Data Warehousing Class Projects Class projects are going very well! Project presentations: 15 minutes On Wednesday

More information

A Design and implementation of a data warehouse for research administration universities

A Design and implementation of a data warehouse for research administration universities A Design and implementation of a data warehouse for research administration universities André Flory 1, Pierre Soupirot 2, and Anne Tchounikine 3 1 CRI : Centre de Ressources Informatiques INSA de Lyon

More information

Data Warehousing and Data Mining

Data Warehousing and Data Mining Data Warehousing and Data Mining Part I: Data Warehousing Gao Cong gaocong@cs.aau.dk Slides adapted from Man Lung Yiu and Torben Bach Pedersen Course Structure Business intelligence: Extract knowledge

More information

Monitoring Genebanks using Datamarts based in an Open Source Tool

Monitoring Genebanks using Datamarts based in an Open Source Tool Monitoring Genebanks using Datamarts based in an Open Source Tool April 10 th, 2008 Edwin Rojas Research Informatics Unit (RIU) International Potato Center (CIP) GPG2 Workshop 2008 Datamarts Motivation

More information

Chapter 5 Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization

Chapter 5 Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization Turban, Aronson, and Liang Decision Support Systems and Intelligent Systems, Seventh Edition Chapter 5 Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization

More information

B.Sc (Computer Science) Database Management Systems UNIT-V

B.Sc (Computer Science) Database Management Systems UNIT-V 1 B.Sc (Computer Science) Database Management Systems UNIT-V Business Intelligence? Business intelligence is a term used to describe a comprehensive cohesive and integrated set of tools and process used

More information

CHAPTER 4 Data Warehouse Architecture

CHAPTER 4 Data Warehouse Architecture CHAPTER 4 Data Warehouse Architecture 4.1 Data Warehouse Architecture 4.2 Three-tier data warehouse architecture 4.3 Types of OLAP servers: ROLAP versus MOLAP versus HOLAP 4.4 Further development of Data

More information

Week 3 lecture slides

Week 3 lecture slides Week 3 lecture slides Topics Data Warehouses Online Analytical Processing Introduction to Data Cubes Textbook reference: Chapter 3 Data Warehouses A data warehouse is a collection of data specifically

More information

This tutorial will help computer science graduates to understand the basic-toadvanced concepts related to data warehousing.

This tutorial will help computer science graduates to understand the basic-toadvanced concepts related to data warehousing. About the Tutorial A data warehouse is constructed by integrating data from multiple heterogeneous sources. It supports analytical reporting, structured and/or ad hoc queries and decision making. This

More information

www.ijreat.org Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 28

www.ijreat.org Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 28 Data Warehousing - Essential Element To Support Decision- Making Process In Industries Ashima Bhasin 1, Mr Manoj Kumar 2 1 Computer Science Engineering Department, 2 Associate Professor, CSE Abstract SGT

More information

Data Warehousing and OLAP Technology for Knowledge Discovery

Data Warehousing and OLAP Technology for Knowledge Discovery 542 Data Warehousing and OLAP Technology for Knowledge Discovery Aparajita Suman Abstract Since time immemorial, libraries have been generating services using the knowledge stored in various repositories

More information

Chapter 5. Warehousing, Data Acquisition, Data. Visualization

Chapter 5. Warehousing, Data Acquisition, Data. Visualization Decision Support Systems and Intelligent Systems, Seventh Edition Chapter 5 Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization 5-1 Learning Objectives

More information

Business Intelligence, Analytics & Reporting: Glossary of Terms

Business Intelligence, Analytics & Reporting: Glossary of Terms Business Intelligence, Analytics & Reporting: Glossary of Terms A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Ad-hoc analytics Ad-hoc analytics is the process by which a user can create a new report

More information

Data Warehouse design

Data Warehouse design Data Warehouse design Design of Enterprise Systems University of Pavia 21/11/2013-1- Data Warehouse design DATA PRESENTATION - 2- BI Reporting Success Factors BI platform success factors include: Performance

More information

Data Warehousing and OLAP

Data Warehousing and OLAP 1 Data Warehousing and OLAP Hector Garcia-Molina Stanford University Warehousing Growing industry: $8 billion in 1998 Range from desktop to huge: Walmart: 900-CPU, 2,700 disk, 23TB Teradata system Lots

More information

CSE 544 Principles of Database Management Systems. Magdalena Balazinska Winter 2009 Lecture 15 - Data Warehousing: Cubes

CSE 544 Principles of Database Management Systems. Magdalena Balazinska Winter 2009 Lecture 15 - Data Warehousing: Cubes CSE 544 Principles of Database Management Systems Magdalena Balazinska Winter 2009 Lecture 15 - Data Warehousing: Cubes Final Exam Overview Open books and open notes No laptops and no other mobile devices

More information

Data Warehousing. Outline. From OLTP to the Data Warehouse. Overview of data warehousing Dimensional Modeling Online Analytical Processing

Data Warehousing. Outline. From OLTP to the Data Warehouse. Overview of data warehousing Dimensional Modeling Online Analytical Processing Data Warehousing Outline Overview of data warehousing Dimensional Modeling Online Analytical Processing From OLTP to the Data Warehouse Traditionally, database systems stored data relevant to current business

More information

IST722 Data Warehousing

IST722 Data Warehousing IST722 Data Warehousing Components of the Data Warehouse Michael A. Fudge, Jr. Recall: Inmon s CIF The CIF is a reference architecture Understanding the Diagram The CIF is a reference architecture CIF

More information

Data Warehousing. Yeow Wei Choong Anne Laurent

Data Warehousing. Yeow Wei Choong Anne Laurent Data Warehousing Yeow Wei Choong Anne Laurent Databases Databases are developed on the IDEA that DATA is one of the cri>cal materials of the Informa>on Age Informa>on, which is created by data, becomes

More information

(Week 10) A04. Information System for CRM. Electronic Commerce Marketing

(Week 10) A04. Information System for CRM. Electronic Commerce Marketing (Week 10) A04. Information System for CRM Electronic Commerce Marketing Course Code: 166186-01 Course Name: Electronic Commerce Marketing Period: Autumn 2015 Lecturer: Prof. Dr. Sync Sangwon Lee Department:

More information

Data Warehouses & OLAP

Data Warehouses & OLAP Riadh Ben Messaoud 1. The Big Picture 2. Data Warehouse Philosophy 3. Data Warehouse Concepts 4. Warehousing Applications 5. Warehouse Schema Design 6. Business Intelligence Reporting 7. On-Line Analytical

More information

Lecture Data Warehouse Systems

Lecture Data Warehouse Systems Lecture Data Warehouse Systems Eva Zangerle SS 2013 PART A: Architecture Chapter 1: Motivation and Definitions Motivation Goal: to build an operational general view on a company to support decisions in

More information

Overview of Data Warehousing and OLAP

Overview of Data Warehousing and OLAP Overview of Data Warehousing and OLAP Chapter 28 March 24, 2008 ADBS: DW 1 Chapter Outline What is a data warehouse (DW) Conceptual structure of DW Why separate DW Data modeling for DW Online Analytical

More information

European Archival Records and Knowledge Preservation Database Archiving in the E-ARK Project

European Archival Records and Knowledge Preservation Database Archiving in the E-ARK Project European Archival Records and Knowledge Preservation Database Archiving in the E-ARK Project Janet Delve, University of Portsmouth Kuldar Aas, National Archives of Estonia Rainer Schmidt, Austrian Institute

More information

OLAP & DATA MINING CS561-SPRING 2012 WPI, MOHAMED ELTABAKH

OLAP & DATA MINING CS561-SPRING 2012 WPI, MOHAMED ELTABAKH OLAP & DATA MINING CS561-SPRING 2012 WPI, MOHAMED ELTABAKH 1 Online Analytic Processing OLAP 2 OLAP OLAP: Online Analytic Processing OLAP queries are complex queries that Touch large amounts of data Discover

More information

Data W a Ware r house house and and OLAP Week 5 1

Data W a Ware r house house and and OLAP Week 5 1 Data Warehouse and OLAP Week 5 1 Midterm I Friday, March 4 Scope Homework assignments 1 4 Open book Team Homework Assignment #7 Read pp. 121 139, 146 150 of the text book. Do Examples 3.8, 3.10 and Exercise

More information

Building Data Cubes and Mining Them. Jelena Jovanovic Email: jeljov@fon.bg.ac.yu

Building Data Cubes and Mining Them. Jelena Jovanovic Email: jeljov@fon.bg.ac.yu Building Data Cubes and Mining Them Jelena Jovanovic Email: jeljov@fon.bg.ac.yu KDD Process KDD is an overall process of discovering useful knowledge from data. Data mining is a particular step in the

More information

Distance Learning and Examining Systems

Distance Learning and Examining Systems Lodz University of Technology Distance Learning and Examining Systems - Theory and Applications edited by Sławomir Wiak Konrad Szumigaj HUMAN CAPITAL - THE BEST INVESTMENT The project is part-financed

More information

BUSINESS ANALYTICS AND DATA VISUALIZATION. ITM-761 Business Intelligence ดร. สล ล บ ญพราหมณ

BUSINESS ANALYTICS AND DATA VISUALIZATION. ITM-761 Business Intelligence ดร. สล ล บ ญพราหมณ 1 BUSINESS ANALYTICS AND DATA VISUALIZATION ITM-761 Business Intelligence ดร. สล ล บ ญพราหมณ 2 การท าความด น น ยากและเห นผลช า แต ก จ าเป นต องท า เพราะหาไม ความช วซ งท าได ง ายจะเข ามาแทนท และจะพอกพ นข

More information

A Critical Review of Data Warehouse

A Critical Review of Data Warehouse Global Journal of Business Management and Information Technology. Volume 1, Number 2 (2011), pp. 95-103 Research India Publications http://www.ripublication.com A Critical Review of Data Warehouse Sachin

More information

Decision Support. Chapter 23. Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke 1

Decision Support. Chapter 23. Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke 1 Decision Support Chapter 23 Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke 1 Introduction Increasingly, organizations are analyzing current and historical data to identify useful

More information

Data Warehousing, OLAP, and Data Mining

Data Warehousing, OLAP, and Data Mining Data Warehousing, OLAP, and Marek Rychly mrychly@strathmore.edu Strathmore University, @ilabafrica & Brno University of Technology, Faculty of Information Technology Advanced Databases and Enterprise Systems

More information

Module 1: Introduction to Data Warehousing and OLAP

Module 1: Introduction to Data Warehousing and OLAP Raw Data vs. Business Information Module 1: Introduction to Data Warehousing and OLAP Capturing Raw Data Gathering data recorded in everyday operations Deriving Business Information Deriving meaningful

More information

When to consider OLAP?

When to consider OLAP? When to consider OLAP? Author: Prakash Kewalramani Organization: Evaltech, Inc. Evaltech Research Group, Data Warehousing Practice. Date: 03/10/08 Email: erg@evaltech.com Abstract: Do you need an OLAP

More information

Mario Guarracino. Data warehousing

Mario Guarracino. Data warehousing Data warehousing Introduction Since the mid-nineties, it became clear that the databases for analysis and business intelligence need to be separate from operational. In this lecture we will review the

More information

DATA WAREHOUSE CONCEPTS DATA WAREHOUSE DEFINITIONS

DATA WAREHOUSE CONCEPTS DATA WAREHOUSE DEFINITIONS DATA WAREHOUSE CONCEPTS A fundamental concept of a data warehouse is the distinction between data and information. Data is composed of observable and recordable facts that are often found in operational

More information

Turkish Journal of Engineering, Science and Technology

Turkish Journal of Engineering, Science and Technology Turkish Journal of Engineering, Science and Technology 03 (2014) 106-110 Turkish Journal of Engineering, Science and Technology journal homepage: www.tujest.com Integrating Data Warehouse with OLAP Server

More information

Oracle9i Data Warehouse Review. Robert F. Edwards Dulcian, Inc.

Oracle9i Data Warehouse Review. Robert F. Edwards Dulcian, Inc. Oracle9i Data Warehouse Review Robert F. Edwards Dulcian, Inc. Agenda Oracle9i Server OLAP Server Analytical SQL Data Mining ETL Warehouse Builder 3i Oracle 9i Server Overview 9i Server = Data Warehouse

More information

OLAP and Data Warehousing! Introduction!

OLAP and Data Warehousing! Introduction! The image cannot be displayed. Your computer may not have enough memory to open the image, or the image may have been corrupted. Restart your computer, and then open the file again. If the red x still

More information

Database Applications. Advanced Querying. Transaction Processing. Transaction Processing. Data Warehouse. Decision Support. Transaction processing

Database Applications. Advanced Querying. Transaction Processing. Transaction Processing. Data Warehouse. Decision Support. Transaction processing Database Applications Advanced Querying Transaction processing Online setting Supports day-to-day operation of business OLAP Data Warehousing Decision support Offline setting Strategic planning (statistics)

More information

PowerDesigner WarehouseArchitect The Model for Data Warehousing Solutions. A Technical Whitepaper from Sybase, Inc.

PowerDesigner WarehouseArchitect The Model for Data Warehousing Solutions. A Technical Whitepaper from Sybase, Inc. PowerDesigner WarehouseArchitect The Model for Data Warehousing Solutions A Technical Whitepaper from Sybase, Inc. Table of Contents Section I: The Need for Data Warehouse Modeling.....................................4

More information

Why Business Intelligence

Why Business Intelligence Why Business Intelligence Ferruccio Ferrando z IT Specialist Techline Italy March 2011 page 1 di 11 1.1 The origins In the '50s economic boom, when demand and production were very high, the only concern

More information

CS54100: Database Systems

CS54100: Database Systems CS54100: Database Systems Date Warehousing: Current, Future? 20 April 2012 Prof. Chris Clifton Data Warehousing: Goals OLAP vs OLTP On Line Analytical Processing (vs. Transaction) Optimize for read, not

More information

Business Intelligence: Using Data for More Than Analytics

Business Intelligence: Using Data for More Than Analytics Business Intelligence: Using Data for More Than Analytics Session 672 Session Overview Business Intelligence: Using Data for More Than Analytics What is Business Intelligence? Business Intelligence Solution

More information

M2074 - Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 5 Day Course

M2074 - Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 5 Day Course Module 1: Introduction to Data Warehousing and OLAP Introducing Data Warehousing Defining OLAP Solutions Understanding Data Warehouse Design Understanding OLAP Models Applying OLAP Cubes At the end of

More information

DATA WAREHOUSING APPLICATIONS: AN ANALYTICAL TOOL FOR DECISION SUPPORT SYSTEM

DATA WAREHOUSING APPLICATIONS: AN ANALYTICAL TOOL FOR DECISION SUPPORT SYSTEM DATA WAREHOUSING APPLICATIONS: AN ANALYTICAL TOOL FOR DECISION SUPPORT SYSTEM MOHAMMED SHAFEEQ AHMED Guest Lecturer, Department of Computer Science, Gulbarga University, Gulbarga, Karnataka, India (e-mail:

More information

An Introduction to Data Warehousing. An organization manages information in two dominant forms: operational systems of

An Introduction to Data Warehousing. An organization manages information in two dominant forms: operational systems of An Introduction to Data Warehousing An organization manages information in two dominant forms: operational systems of record and data warehouses. Operational systems are designed to support online transaction

More information

Data Warehousing and Data Mining in Business Applications

Data Warehousing and Data Mining in Business Applications 133 Data Warehousing and Data Mining in Business Applications Eesha Goel CSE Deptt. GZS-PTU Campus, Bathinda. Abstract Information technology is now required in all aspect of our lives that helps in business

More information

New Approach of Computing Data Cubes in Data Warehousing

New Approach of Computing Data Cubes in Data Warehousing International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 14 (2014), pp. 1411-1417 International Research Publications House http://www. irphouse.com New Approach of

More information

Data Warehousing Concepts

Data Warehousing Concepts Data Warehousing Concepts JB Software and Consulting Inc 1333 McDermott Drive, Suite 200 Allen, TX 75013. [[[[[ DATA WAREHOUSING What is a Data Warehouse? Decision Support Systems (DSS), provides an analysis

More information

Learning Objectives. Definition of OLAP Data cubes OLAP operations MDX OLAP servers

Learning Objectives. Definition of OLAP Data cubes OLAP operations MDX OLAP servers OLAP Learning Objectives Definition of OLAP Data cubes OLAP operations MDX OLAP servers 2 What is OLAP? OLAP has two immediate consequences: online part requires the answers of queries to be fast, the

More information

CASE PROJECTS IN DATA WAREHOUSING AND DATA MINING

CASE PROJECTS IN DATA WAREHOUSING AND DATA MINING CASE PROJECTS IN DATA WAREHOUSING AND DATA MINING Mohammad A. Rob, University of Houston-Clear Lake, rob@uhcl.edu Michael E. Ellis, University of Houston-Clear Lake, ellisme@uhcl.edu ABSTRACT This paper

More information

MICHAEL SCHMITZ NOVEMBER 20-22, 2006 NOVEMBER 23-24, 2006 RESIDENZA DI RIPETTA - VIA DI RIPETTA, 231 ROME (ITALY)

MICHAEL SCHMITZ NOVEMBER 20-22, 2006 NOVEMBER 23-24, 2006 RESIDENZA DI RIPETTA - VIA DI RIPETTA, 231 ROME (ITALY) TECHNOLOGY TRANSFER PRESENTS MICHAEL SCHMITZ DATA WAREHOUSING Advanced Design and Implementation Issues ETL FOR THE DATA WAREHOUSE A Template-Driven Approach NOVEMBER 20-22, 2006 NOVEMBER 23-24, 2006 RESIDENZA

More information

QAD Business Intelligence Data Warehouse Demonstration Guide. May 2015 BI 3.11

QAD Business Intelligence Data Warehouse Demonstration Guide. May 2015 BI 3.11 QAD Business Intelligence Data Warehouse Demonstration Guide May 2015 BI 3.11 Overview This demonstration focuses on the foundation of QAD Business Intelligence the Data Warehouse and shows how this functionality

More information

Dimodelo Solutions Data Warehousing and Business Intelligence Concepts

Dimodelo Solutions Data Warehousing and Business Intelligence Concepts Dimodelo Solutions Data Warehousing and Business Intelligence Concepts Copyright Dimodelo Solutions 2010. All Rights Reserved. No part of this document may be reproduced without written consent from the

More information

Chapter 3, Data Warehouse and OLAP Operations

Chapter 3, Data Warehouse and OLAP Operations CSI 4352, Introduction to Data Mining Chapter 3, Data Warehouse and OLAP Operations Young-Rae Cho Associate Professor Department of Computer Science Baylor University CSI 4352, Introduction to Data Mining

More information

An Overview of Data Warehousing, Data mining, OLAP and OLTP Technologies

An Overview of Data Warehousing, Data mining, OLAP and OLTP Technologies An Overview of Data Warehousing, Data mining, OLAP and OLTP Technologies Ashish Gahlot, Manoj Yadav Dronacharya college of engineering Farrukhnagar, Gurgaon,Haryana Abstract- Data warehousing, Data Mining,

More information

Review. Data Warehousing. Today. Star schema. Star join indexes. Dimension hierarchies

Review. Data Warehousing. Today. Star schema. Star join indexes. Dimension hierarchies Review Data Warehousing CPS 216 Advanced Database Systems Data warehousing: integrating data for OLAP OLAP versus OLTP Warehousing versus mediation Warehouse maintenance Warehouse data as materialized

More information

DATA WAREHOUSE E KNOWLEDGE DISCOVERY

DATA WAREHOUSE E KNOWLEDGE DISCOVERY DATA WAREHOUSE E KNOWLEDGE DISCOVERY Prof. Fabio A. Schreiber Dipartimento di Elettronica e Informazione Politecnico di Milano DATA WAREHOUSE (DW) A TECHNIQUE FOR CORRECTLY ASSEMBLING AND MANAGING DATA

More information

Deductive Data Warehouses and Aggregate (Derived) Tables

Deductive Data Warehouses and Aggregate (Derived) Tables Deductive Data Warehouses and Aggregate (Derived) Tables Kornelije Rabuzin, Mirko Malekovic, Mirko Cubrilo Faculty of Organization and Informatics University of Zagreb Varazdin, Croatia {kornelije.rabuzin,

More information

Search and Data Mining Techniques. OLAP Anna Yarygina Boris Novikov

Search and Data Mining Techniques. OLAP Anna Yarygina Boris Novikov Search and Data Mining Techniques OLAP Anna Yarygina Boris Novikov The Database: Shared Data Store? A dream from database textbooks: Sharing data between applications This NEVER happened. Applications

More information

SAS BI Course Content; Introduction to DWH / BI Concepts

SAS BI Course Content; Introduction to DWH / BI Concepts SAS BI Course Content; Introduction to DWH / BI Concepts SAS Web Report Studio 4.2 SAS EG 4.2 SAS Information Delivery Portal 4.2 SAS Data Integration Studio 4.2 SAS BI Dashboard 4.2 SAS Management Console

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Foundations of Business Intelligence: Databases and Information Management Problem: HP s numerous systems unable to deliver the information needed for a complete picture of business operations, lack of

More information

Data Warehousing & OLAP

Data Warehousing & OLAP Data Warehousing & OLAP Motivation: Business Intelligence Customer information (customer-id, gender, age, homeaddress, occupation, income, family-size, ) Product information (Product-id, category, manufacturer,

More information

Business Intelligence Solutions. Cognos BI 8. by Adis Terzić

Business Intelligence Solutions. Cognos BI 8. by Adis Terzić Business Intelligence Solutions Cognos BI 8 by Adis Terzić Fairfax, Virginia August, 2008 Table of Content Table of Content... 2 Introduction... 3 Cognos BI 8 Solutions... 3 Cognos 8 Components... 3 Cognos

More information

Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence

Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Emerging Technologies Shaping the Future of Data Warehouses & Business Intelligence Appliances and DW Architectures John O Brien President and Executive Architect Zukeran Technologies 1 TDWI 1 Agenda What

More information

A Technical Review on On-Line Analytical Processing (OLAP)

A Technical Review on On-Line Analytical Processing (OLAP) A Technical Review on On-Line Analytical Processing (OLAP) K. Jayapriya 1., E. Girija 2,III-M.C.A., R.Uma. 3,M.C.A.,M.Phil., Department of computer applications, Assit.Prof,Dept of M.C.A, Dhanalakshmi

More information

Datawarehousing and Business Intelligence

Datawarehousing and Business Intelligence Datawarehousing and Business Intelligence Vannaratana (Bee) Praruksa March 2001 Report for the course component Datawarehousing and OLAP MSc in Information Systems Development Academy of Communication

More information

Hybrid OLAP, An Introduction

Hybrid OLAP, An Introduction Hybrid OLAP, An Introduction Richard Doherty SAS Institute European HQ Agenda Hybrid OLAP overview Building your data model Architectural decisions Metadata creation Report definition Hybrid OLAP overview

More information

CHAPTER 3. Data Warehouses and OLAP

CHAPTER 3. Data Warehouses and OLAP CHAPTER 3 Data Warehouses and OLAP 3.1 Data Warehouse 3.2 Differences between Operational Systems and Data Warehouses 3.3 A Multidimensional Data Model 3.4Stars, snowflakes and Fact Constellations: 3.5

More information