SlideShare a Scribd company logo
1 of 65
July 13, 2013 1
Pasca Sarjana Universitas Bunda Mulia
Magister Komputer
Data WarehousingData Warehousing
andand
OLAP TechnologyOLAP Technology
Oleh :
Nama : Sunaryo Tandi
N I M : (0801050005)
2July 13, 2013
Data Mining:Data Mining:
Concepts and TechniquesConcepts and Techniques
— Chapter 3 —— Chapter 3 —
Jiawei Han
Department of Computer Science
University of Illinois at Urbana-Champaign
www.cs.uiuc.edu/~hanj
Š2006 Jiawei Han and Micheline Kamber, All rights reserved
3July 13, 2013
Chapter 3: Data Warehousing and OLAP Technology: An OverviewChapter 3: Data Warehousing and OLAP Technology: An Overview
īļ What is a data warehouse?
īļ A multi-dimensional data model
īļ Data warehouse architecture
īļ Data warehouse implementation
īļ From data warehousing to data mining
4July 13, 2013
Which are our
lowest/highest margin
customers ?
Which are our
lowest/highest margin
customers ?
Who are my customers
and what products
are they buying?
Who are my customers
and what products
are they buying?
Which customers
are most likely to go
to the competition ?
Which customers
are most likely to go
to the competition ?
What impact will
new products/services
have on revenue
and margins?
What impact will
new products/services
have on revenue
and margins?
What product prom-
-otions have the biggest
impact on revenue?
What product prom-
-otions have the biggest
impact on revenue?
What is the most
effective distribution
channel?
What is the most
effective distribution
channel?
A producer wants to knowâ€Ļ.A producer wants to knowâ€Ļ.
5July 13, 2013
What is Data Warehouse?What is Data Warehouse?
īļ Defined in many different ways, but not rigorously.
ī‚§ A decision support database that is maintained separately from
the organization’s operational database
ī‚§ Support information processing by providing a solid platform of
consolidated, historical data for analysis.
īļ “A data warehouse is a subject-oriented, integrated, time-variant,
and nonvolatile collection of data in support of management’s
decision-making process.”—W. H. Inmon
īļ Data warehousing:
ī‚§ The process of constructing and using data warehouses
6July 13, 2013
Data Warehouse—Subject-OrientedData Warehouse—Subject-Oriented
īļ Organized around major subjects, such as customer,
product, sales
īļ Focusing on the modeling and analysis of data for
decision makers, not on daily operations or transaction
processing
īļ Provide a simple and concise view around particular
subject issues by excluding data that are not useful in
the decision support process
7July 13, 2013
Data Warehouse—IntegratedData Warehouse—Integrated
īļ Constructed by integrating multiple, heterogeneous
data sources
ī‚§ relational databases, flat files, on-line transaction records
īļ Data cleaning and data integration techniques are
applied.
ī‚§ Ensure consistency in naming conventions, encoding
structures, attribute measures, etc. among different data
sources
â€ĸ E.g., Hotel price: currency, tax, breakfast covered, etc.
ī‚§ When data is moved to the warehouse, it is converted.
8July 13, 2013
Data Warehouse—Time VariantData Warehouse—Time Variant
īļ The time horizon for the data warehouse is significantly
longer than that of operational systems
ī‚§ Operational database: current value data
ī‚§ Data warehouse data: provide information from a
historical perspective (e.g., past 5-10 years)
īļ Every key structure in the data warehouse
ī‚§ Contains an element of time, explicitly or implicitly
ī‚§ But the key of operational data may or may not contain
“time element”
9July 13, 2013
Data Warehouse—NonvolatileData Warehouse—Nonvolatile
īļ A physically separate store of data transformed from the
operational environment
īļ Operational update of data does not occur in the data
warehouse environment
ī‚§ Does not require transaction processing, recovery, and
concurrency control mechanisms
ī‚§ Requires only two operations in data accessing:
â€ĸ initial loading of data and access of data
10July 13, 2013
Data Warehouse vs. Heterogeneous DBMSData Warehouse vs. Heterogeneous DBMS
īļ Traditional heterogeneous DB integration: A query driven approach
ī‚§ Build wrappers/mediators on top of heterogeneous databases
ī‚§ When a query is posed to a client site, a meta-dictionary is used
to translate the query into queries appropriate for individual
heterogeneous sites involved, and the results are integrated into
a global answer set
ī‚§ Complex information filtering, compete for resources
īļ Data warehouse: update-driven, high performance
ī‚§ Information from heterogeneous sources is integrated in advance
and stored in warehouses for direct query and analysis
11July 13, 2013
Data Warehouse vs. Operational DBMSData Warehouse vs. Operational DBMS
īļ OLTP (on-line transaction processing)
ī‚§ Major task of traditional relational DBMS
ī‚§ Day-to-day operations: purchasing, inventory, banking,
manufacturing, payroll, registration, accounting, etc.
īļ OLAP (on-line analytical processing)
ī‚§ Major task of data warehouse system
ī‚§ Data analysis and decision making
īļ Distinct features (OLTP vs. OLAP):
ī‚§ User and system orientation: customer vs. market
ī‚§ Data contents: current, detailed vs. historical, consolidated
ī‚§ Database design: ER + application vs. star + subject
ī‚§ View: current, local vs. evolutionary, integrated
ī‚§ Access patterns: update vs. read-only but complex queries
12July 13, 2013
So, what’s different?So, what’s different?
13July 13, 2013
OLTP vs. OLAPOLTP vs. OLAP
OLTP OLAP
users clerk, IT professional knowledge worker
function day to day operations decision support
DB design application-oriented subject-oriented
data current, up-to-date
detailed, flat relational
isolated
historical,
summarized, multidimensional
integrated, consolidated
usage repetitive ad-hoc
access read/write
index/hash on prim. key
lots of scans
unit of work short, simple transaction complex query
# records accessed tens millions
#users thousands hundreds
DB size 100MB-GB 100GB-TB
metric transaction throughput query throughput, response
14July 13, 2013
Application-Orientation vs. Subject-OrientationApplication-Orientation vs. Subject-Orientation
Application-Orientation
Operationa
l Database
Loans
Credit
Card
Trust
Savings
Subject-Orientation
Data
Warehouse
Customer
Vendor
Product
Activity
15July 13, 2013
Why Separate Data Warehouse?Why Separate Data Warehouse?
īļ High performance for both systems
ī‚§ DBMS— tuned for OLTP: access methods, indexing, concurrency
control, recovery
ī‚§ Warehouse—tuned for OLAP: complex OLAP queries,
multidimensional view, consolidation
īļ Different functions and different data:
ī‚§ missing data: Decision support requires historical data which
operational DBs do not typically maintain
ī‚§ data consolidation: DS requires consolidation (aggregation,
summarization) of data from heterogeneous sources
ī‚§ data quality: different sources typically use inconsistent data
representations, codes and formats which have to be reconciled
īļ Note: There are more and more systems which perform OLAP
analysis directly on relational databases
16July 13, 2013
To summarize ...To summarize ...
īļ OLTP Systems are
used to “run” a business
īļ The Data Warehouse
helps to “optimize” the
business
17July 13, 2013
Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP
Technology: An OverviewTechnology: An Overview
īļWhat is a data warehouse?
īļA multi-dimensional data model
īļData warehouse architecture
īļData warehouse implementation
īļFrom data warehousing to data mining
18July 13, 2013
From Tables and Spreadsheets to Data CubesFrom Tables and Spreadsheets to Data Cubes
īļ A data warehouse is based on a multidimensional data model which
views data in the form of a data cube
īļ A data cube, such as sales, allows data to be modeled and viewed in
multiple dimensions
ī‚§ Dimension tables, such as item (item_name, brand, type), or
time(day, week, month, quarter, year)
ī‚§ Fact table contains measures (such as dollars_sold) and keys to
each of the related dimension tables
īļ In data warehousing literature, an n-D base cube is called a base
cuboid. The top most 0-D cuboid, which holds the highest-level of
summarization, is called the apex cuboid. The lattice of cuboids
forms a data cube.
19July 13, 2013
Cube: A Lattice of CuboidsCube: A Lattice of Cuboids
time,item
time,item,location
time, item, location, supplier
all
time item location supplier
time,location
time,supplier
item,location
item,supplier
location,supplier
time,item,supplier
time,location,supplier
item,location,supplier
0-D(apex) cuboid
1-D cuboids
2-D cuboids
3-D cuboids
4-D(base) cuboid
20July 13, 2013
Conceptual Modeling of Data WarehousesConceptual Modeling of Data Warehouses
īļ Modeling data warehouses: dimensions & measures
ī‚§ Star schema: A fact table in the middle connected to a set
of dimension tables
ī‚§ Snowflake schema: A refinement of star schema where
some dimensional hierarchy is normalized into a set of
smaller dimension tables, forming a shape similar to
snowflake
ī‚§ Fact constellations: Multiple fact tables share dimension
tables, viewed as a collection of stars, therefore called
galaxy schema or fact constellation
21July 13, 2013
Example of Star SchemaExample of Star Schema
time_key
day
day_of_the_week
month
quarter
year
time
location_key
street
city
state_or_province
country
location
Sales Fact Table
time_key
item_key
branch_key
location_key
units_sold
dollars_sold
avg_sales
Measures
item_key
item_name
brand
type
supplier_type
item
branch_key
branch_name
branch_type
branch
22July 13, 2013
Example of Snowflake SchemaExample of Snowflake Schema
time_key
day
day_of_the_week
month
quarter
year
time
location_key
street
city_key
location
Sales Fact Table
time_key
item_key
branch_key
location_key
units_sold
dollars_sold
avg_sales
Measures
item_key
item_name
brand
type
supplier_key
item
branch_key
branch_name
branch_type
branch
supplier_key
supplier_type
supplier
city_key
city
state_or_province
country
city
23July 13, 2013
Example of Fact ConstellationExample of Fact Constellation
time_key
day
day_of_the_week
month
quarter
year
time
location_key
street
city
province_or_state
country
location
Sales Fact Table
time_key
item_key
branch_key
location_key
units_sold
dollars_sold
avg_sales
Measures
item_key
item_name
brand
type
supplier_type
item
branch_key
branch_name
branch_type
branch
Shipping Fact Table
time_key
item_key
shipper_key
from_location
to_location
dollars_cost
units_shipped
shipper_key
shipper_name
location_key
shipper_type
shipper
24July 13, 2013
Cube Definition Syntax (BNF) in DMQLCube Definition Syntax (BNF) in DMQL
īļ Cube Definition (Fact Table)
define cube <cube_name> [<dimension_list>]:
<measure_list>
īļ Dimension Definition (Dimension Table)
define dimension <dimension_name> as
(<attribute_or_subdimension_list>)
īļ Special Case (Shared Dimension Tables)
ī‚§ First time as “cube definition”
ī‚§ define dimension <dimension_name> as
<dimension_name_first_time> in cube
<cube_name_first_time>
25July 13, 2013
Defining Star Schema in DMQLDefining Star Schema in DMQL
define cube sales_star [time, item, branch, location]:
dollars_sold = sum(sales_in_dollars), avg_sales =
avg(sales_in_dollars), units_sold = count(*)
define dimension time as (time_key, day, day_of_week,
month, quarter, year)
define dimension item as (item_key, item_name, brand,
type, supplier_type)
define dimension branch as (branch_key, branch_name,
branch_type)
define dimension location as (location_key, street, city,
province_or_state, country)
26July 13, 2013
Defining Snowflake Schema in DMQLDefining Snowflake Schema in DMQL
define cube sales_snowflake [time, item, branch, location]:
dollars_sold = sum(sales_in_dollars), avg_sales =
avg(sales_in_dollars), units_sold = count(*)
define dimension time as (time_key, day, day_of_week, month,
quarter, year)
define dimension item as (item_key, item_name, brand, type,
supplier(supplier_key, supplier_type))
define dimension branch as (branch_key, branch_name, branch_type)
define dimension location as (location_key, street, city(city_key,
province_or_state, country))
27July 13, 2013
Defining Fact Constellation in DMQLDefining Fact Constellation in DMQL
define cube sales [time, item, branch, location]:
dollars_sold = sum(sales_in_dollars), avg_sales =
avg(sales_in_dollars), units_sold = count(*)
define dimension time as (time_key, day, day_of_week, month, quarter, year)
define dimension item as (item_key, item_name, brand, type, supplier_type)
define dimension branch as (branch_key, branch_name, branch_type)
define dimension location as (location_key, street, city, province_or_state,
country)
define cube shipping [time, item, shipper, from_location, to_location]:
dollar_cost = sum(cost_in_dollars), unit_shipped = count(*)
define dimension time as time in cube sales
define dimension item as item in cube sales
define dimension shipper as (shipper_key, shipper_name, location as location
in cube sales, shipper_type)
define dimension from_location as location in cube sales
define dimension to_location as location in cube sales
28July 13, 2013
Measures of Data Cube: Three CategoriesMeasures of Data Cube: Three Categories
īļ Distributive: if the result derived by applying the function to
n aggregate values is the same as that derived by applying
the function on all the data without partitioning
â€ĸ E.g., count(), sum(), min(), max()
īļ Algebraic: if it can be computed by an algebraic function
with M arguments (where M is a bounded integer), each of
which is obtained by applying a distributive aggregate
function
â€ĸ E.g., avg(), min_N(), standard_deviation()
īļ Holistic: if there is no constant bound on the storage size
needed to describe a subaggregate.
â€ĸ E.g., median(), mode(), rank()
29July 13, 2013
A Concept Hierarchy: Dimension (location)A Concept Hierarchy: Dimension (location)
all
Europe North_America
MexicoCanadaSpainGermany
Vancouver
M. WindL. Chan
...
......
... ...
...
all
region
office
country
TorontoFrankfurtcity
30July 13, 2013
View of Warehouses and HierarchiesView of Warehouses and Hierarchies
Specification of hierarchies
īļ Schema hierarchy
day < {month < quarter;
week} < year
īļ Set_grouping hierarchy
{1..10} < inexpensive
31July 13, 2013
Multidimensional DataMultidimensional Data
īļSales volume as a function of product, month,
and region
ProductRegion
Month
Dimensions: Product, Location, Time
Hierarchical summarization paths
Industry Region Year
Category Country Quarter
Product City Month Week
Office Day
32July 13, 2013
A Sample Data CubeA Sample Data Cube
Total annual sales
of TV in U.S.A.Date
Product
Country
sum
sum
TV
VCR
PC
1Qtr 2Qtr 3Qtr 4Qtr
U.S.A
Canada
Mexico
sum
33July 13, 2013
Cuboids Corresponding to the CubeCuboids Corresponding to the Cube
all
product date country
product,date product,country date, country
product, date, country
0-D(apex) cuboid
1-D cuboids
2-D cuboids
3-D(base) cuboid
34July 13, 2013
Browsing a Data CubeBrowsing a Data Cube
īļVisualization
īļOLAP capabilities
īļInteractive manipulation
35July 13, 2013
Typical OLAP OperationsTypical OLAP Operations
īļ Roll up (drill-up): summarize data
ī‚§ by climbing up hierarchy or by dimension reduction
īļ Drill down (roll down): reverse of roll-up
ī‚§ from higher level summary to lower level summary or detailed
data, or introducing new dimensions
īļ Slice and dice: project and select
īļ Pivot (rotate):
ī‚§ reorient the cube, visualization, 3D to series of 2D planes
īļ Other operations
ī‚§ drill across: involving (across) more than one fact table
ī‚§ drill through: through the bottom level of the cube to its back-
end relational tables (using SQL)
36July 13, 2013
Fig. 3.10 Typical
OLAP Operations
37July 13, 2013
A Star-Net Query ModelA Star-Net Query Model
Shipping Method
AIR-EXPRESS
TRUCK
ORDER
Customer Orders
CONTRACTS
Customer
Product
PRODUCT GROUP
PRODUCT LINE
PRODUCT ITEM
SALES PERSON
DISTRICT
DIVISION
OrganizationPromotion
CITY
COUNTRY
REGION
Location
DAILYQTRLYANNUALY
Time
Each circle is
called a footprint
38July 13, 2013
Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP
Technology: An OverviewTechnology: An Overview
īļWhat is a data warehouse?
īļA multi-dimensional data model
īļData warehouse architecture
īļData warehouse implementation
īļFrom data warehousing to data mining
39July 13, 2013
Design of Data Warehouse: A BusinessDesign of Data Warehouse: A Business
Analysis FrameworkAnalysis Framework
īļ Four views regarding the design of a data warehouse
ī‚§ Top-down view
â€ĸ allows selection of the relevant information necessary for the
data warehouse
ī‚§ Data source view
â€ĸ exposes the information being captured, stored, and
managed by operational systems
ī‚§ Data warehouse view
â€ĸ consists of fact tables and dimension tables
ī‚§ Business query view
â€ĸ sees the perspectives of data in the warehouse from the view
of end-user
40July 13, 2013
Data Warehouse Design ProcessData Warehouse Design Process
īļ Top-down, bottom-up approaches or a combination of both
ī‚§ Top-down: Starts with overall design and planning (mature)
ī‚§ Bottom-up: Starts with experiments and prototypes (rapid)
īļ From software engineering point of view
ī‚§ Waterfall: structured and systematic analysis at each step before
proceeding to the next
ī‚§ Spiral: rapid generation of increasingly functional systems, short
turn around time, quick turn around
īļ Typical data warehouse design process
ī‚§ Choose a business process to model, e.g., orders, invoices, etc.
ī‚§ Choose the grain (atomic level of data) of the business process
ī‚§ Choose the dimensions that will apply to each fact table record
ī‚§ Choose the measure that will populate each fact table record
41July 13, 2013
Data Warehouse: A Multi-Tiered ArchitectureData Warehouse: A Multi-Tiered Architecture
Data
Warehouse
Extract
Transform
Load
Refresh
OLAP Engine
Analysis
Query
Reports
Data mining
Monitor
&
Integrator
Metadata
Data Sources Front-End Tools
Serve
Data Marts
Operational
DBs
Other
sources
Data Storage
OLAP Server
42July 13, 2013
Three Data Warehouse ModelsThree Data Warehouse Models
īļ Enterprise warehouse
ī‚§ collects all of the information about subjects spanning the
entire organization
īļ Data Mart
ī‚§ a subset of corporate-wide data that is of value to a specific
groups of users. Its scope is confined to specific, selected
groups, such as marketing data mart
â€ĸ Independent vs. dependent (directly from warehouse) data mart
īļ Virtual warehouse
ī‚§ A set of views over operational databases
ī‚§ Only some of the possible summary views may be
materialized
43July 13, 2013
Data Warehouse Development: AData Warehouse Development: A
Recommended ApproachRecommended Approach
Define a high-level corporate data model
Data
Mart
Data
Mart
Distributed
Data Marts
Multi-Tier Data
Warehouse
Enterprise
Data
Warehouse
Model refinementModel refinement
44July 13, 2013
Data Mart CentricData Mart Centric
Data Marts
Data Sources
Data Warehouse
45July 13, 2013
Problems with Data Mart Centric SolutionProblems with Data Mart Centric Solution
If you end up creating multiple warehouses,
integrating them is a problem
46July 13, 2013
True WarehouseTrue Warehouse
Data Marts
Data Sources
Data Warehouse
47July 13, 2013
Data Warehouse Back-End Tools and UtilitiesData Warehouse Back-End Tools and Utilities
īļ Data extraction
ī‚§ get data from multiple, heterogeneous, and external sources
īļ Data cleaning
ī‚§ detect errors in the data and rectify them when possible
īļ Data transformation
ī‚§ convert data from legacy or host format to warehouse format
īļ Load
ī‚§ sort, summarize, consolidate, compute views, check integrity,
and build indicies and partitions
īļ Refresh
ī‚§ propagate the updates from the data sources to the
warehouse
48July 13, 2013
Metadata RepositoryMetadata Repository
īļ Meta data is the data defining warehouse objects. It stores:
īļ Description of the structure of the data warehouse
ī‚§ schema, view, dimensions, hierarchies, derived data defn, data
mart locations and contents
īļ Operational meta-data
ī‚§ data lineage (history of migrated data and transformation path),
currency of data (active, archived, or purged), monitoring
information (warehouse usage statistics, error reports, audit trails)
īļ The algorithms used for summarization
īļ The mapping from operational environment to the data warehouse
īļ Data related to system performance
ī‚§ warehouse schema, view and derived data definitions
īļ Business data
ī‚§ business terms and definitions, ownership of data, charging
49July 13, 2013
OLAP Server ArchitecturesOLAP Server Architectures
īļ Relational OLAP (ROLAP)
ī‚§ Use relational or extended-relational DBMS to store and manage
warehouse data and OLAP middle ware
ī‚§ Include optimization of DBMS backend, implementation of
aggregation navigation logic, and additional tools and services
ī‚§ Greater scalability
īļ Multidimensional OLAP (MOLAP)
ī‚§ Sparse array-based multidimensional storage engine
ī‚§ Fast indexing to pre-computed summarized data
īļ Hybrid OLAP (HOLAP) (e.g., Microsoft SQLServer)
ī‚§ Flexibility, e.g., low level: relational, high-level: array
īļ Specialized SQL servers (e.g., Redbricks)
ī‚§ Specialized support for SQL queries over star/snowflake schemas
50July 13, 2013
Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP
Technology: An OverviewTechnology: An Overview
īļWhat is a data warehouse?
īļA multi-dimensional data model
īļData warehouse architecture
īļData warehouse implementation
īļFrom data warehousing to data mining
51July 13, 2013
Efficient Data Cube ComputationEfficient Data Cube Computation
īļ Data cube can be viewed as a lattice of cuboids
ī‚§ The bottom-most cuboid is the base cuboid
ī‚§ The top-most cuboid (apex) contains only one cell
ī‚§ How many cuboids in an n-dimensional cube with L levels?
īļ Materialization of data cube
ī‚§ Materialize every (cuboid) (full materialization), none (no
materialization), or some (partial materialization)
ī‚§ Selection of which cuboids to materialize
â€ĸ Based on size, sharing, access frequency, etc.
)1
1
( +∏
=
=
n
i
iLT
52July 13, 2013
Cube OperationCube Operation
īļ Cube definition and computation in DMQL
define cube sales[item, city, year]: sum(sales_in_dollars)
compute cube sales
īļ Transform it into a SQL-like language (with a new operator
cube by, introduced by Gray et al.’96)
SELECT item, city, year, SUM (amount)
FROM SALES
CUBE BY item, city, year
īļ Need compute the following Group-Bys
(date, product, customer),
(date,product),(date, customer), (product, customer),
(date), (product), (customer)
()
(item)(city)
()
(year)
(city, item) (city, year) (item, year)
(city, item, year)
53July 13, 2013
Iceberg CubeIceberg Cube
īļ Computing only the cuboid cells whose
count or other aggregates satisfying the
condition like
HAVING COUNT(*) >= minsup
īļ Motivation
ī‚§ Only a small portion of cube cells may be “above the water’’
in a sparse cube
ī‚§ Only calculate “interesting” cells—data above certain
threshold
ī‚§ Avoid explosive growth of the cube
â€ĸ Suppose 100 dimensions, only 1 base cell. How many
aggregate cells if count >= 1? What about count >= 2?
54July 13, 2013
Indexing OLAP Data: Bitmap IndexIndexing OLAP Data: Bitmap Index
īļ Index on a particular column
īļ Each value in the column has a bit vector: bit-op is fast
īļ The length of the bit vector: # of records in the base table
īļ The i-th bit is set if the i-th row of the base table has the value for
the indexed column
īļ not suitable for high cardinality domains
Cust Region Type
C1 Asia Retail
C2 Europe Dealer
C3 Asia Dealer
C4 America Retail
C5 Europe Dealer
RecID Retail Dealer
1 1 0
2 0 1
3 0 1
4 1 0
5 0 1
RecIDAsia Europe America
1 1 0 0
2 0 1 0
3 1 0 0
4 0 0 1
5 0 1 0
Base table Index on Region Index on Type
55July 13, 2013
Indexing OLAP Data: Join IndicesIndexing OLAP Data: Join Indices
īļ Join index: JI(R-id, S-id) where R (R-id, â€Ļ) ī€žī€ŧ S
(S-id, â€Ļ)
īļ Traditional indices map the values to a list of
record ids
ī‚§ It materializes relational join in JI file and
speeds up relational join
īļ In data warehouses, join index relates the values
of the dimensions of a start schema to rows in
the fact table.
ī‚§ E.g. fact table: Sales and two dimensions city
and product
â€ĸ A join index on city maintains for each
distinct city a list of R-IDs of the tuples
recording the Sales in the city
ī‚§ Join indices can span multiple dimensions
56July 13, 2013
Efficient Processing OLAP QueriesEfficient Processing OLAP Queries
īļ Determine which operations should be performed on the available cuboids
ī‚§ Transform drill, roll, etc. into corresponding SQL and/or OLAP operations, e.g.,
dice = selection + projection
īļ Determine which materialized cuboid(s) should be selected for OLAP op.
ī‚§ Let the query to be processed be on {brand, province_or_state} with the
condition “year = 2004”, and there are 4 materialized cuboids available:
1) {year, item_name, city}
2) {year, brand, country}
3) {year, brand, province_or_state}
4) {item_name, province_or_state} where year = 2004
Which should be selected to process the query?
īļ Explore indexing structures and compressed vs. dense array structs in MOLAP
57July 13, 2013
Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP
Technology: An OverviewTechnology: An Overview
īļWhat is a data warehouse?
īļA multi-dimensional data model
īļData warehouse architecture
īļData warehouse implementation
īļFrom data warehousing to data mining
58July 13, 2013
Data Warehouse UsageData Warehouse Usage
īļ Three kinds of data warehouse applications
ī‚§ Information processing
â€ĸ supports querying, basic statistical analysis, and reporting
using crosstabs, tables, charts and graphs
ī‚§ Analytical processing
â€ĸ multidimensional analysis of data warehouse data
â€ĸ supports basic OLAP operations, slice-dice, drilling, pivoting
ī‚§ Data mining
â€ĸ knowledge discovery from hidden patterns
â€ĸ supports associations, constructing analytical models,
performing classification and prediction, and presenting the
mining results using visualization tools
59July 13, 2013
From On-Line Analytical Processing (OLAP)From On-Line Analytical Processing (OLAP)
to On Line Analytical Mining (OLAM)to On Line Analytical Mining (OLAM)
īļ Why online analytical mining?
ī‚§ High quality of data in data warehouses
â€ĸ DW contains integrated, consistent, cleaned data
ī‚§ Available information processing structure surrounding
data warehouses
â€ĸ ODBC, OLEDB, Web accessing, service facilities,
reporting and OLAP tools
ī‚§ OLAP-based exploratory data analysis
â€ĸ Mining with drilling, dicing, pivoting, etc.
ī‚§ On-line selection of data mining functions
â€ĸ Integration and swapping of multiple mining
functions, algorithms, and tasks
60July 13, 2013
An OLAM System ArchitectureAn OLAM System Architecture
Data
Warehouse
Meta
Data
MDDB
OLAM
Engine
OLAP
Engine
User GUI API
Data Cube API
Database API
Data cleaning
Data integration
Layer3
OLAP/OLAM
Layer2
MDDB
Layer1
Data
Repository
Layer4
User Interface
Filtering&Integration Filtering
Databases
Mining query Mining result
61July 13, 2013
Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP
Technology: An OverviewTechnology: An Overview
īļWhat is a data warehouse?
īļA multi-dimensional data model
īļData warehouse architecture
īļData warehouse implementation
īļFrom data warehousing to data mining
īļSummary
62July 13, 2013
Summary: Data Warehouse and OLAP TechnologySummary: Data Warehouse and OLAP Technology
īļ Why data warehousing?
īļ A multi-dimensional model of a data warehouse
ī‚§ Star schema, snowflake schema, fact constellations
ī‚§ A data cube consists of dimensions & measures
īļ OLAP operations: drilling, rolling, slicing, dicing and pivoting
īļ Data warehouse architecture
īļ OLAP servers: ROLAP, MOLAP, HOLAP
īļ Efficient computation of data cubes
ī‚§ Partial vs. full vs. no materialization
ī‚§ Indexing OALP data: Bitmap index and join index
ī‚§ OLAP query processing
īļ From OLAP to OLAM (on-line analytical mining)
63July 13, 2013
References (I)References (I)
īļ S. Agarwal, R. Agrawal, P. M. Deshpande, A. Gupta, J. F. Naughton, R. Ramakrishnan,
and S. Sarawagi. On the computation of multidimensional aggregates. VLDB’96
īļ D. Agrawal, A. E. Abbadi, A. Singh, and T. Yurek. Efficient view maintenance in data
warehouses. SIGMOD’97
īļ R. Agrawal, A. Gupta, and S. Sarawagi. Modeling multidimensional databases.
ICDE’97
īļ S. Chaudhuri and U. Dayal. An overview of data warehousing and OLAP technology.
ACM SIGMOD Record, 26:65-74, 1997
īļ E. F. Codd, S. B. Codd, and C. T. Salley. Beyond decision support. Computer World,
27, July 1993.
īļ J. Gray, et al. Data cube: A relational aggregation operator generalizing group-by,
cross-tab and sub-totals. Data Mining and Knowledge Discovery, 1:29-54, 1997.
īļ A. Gupta and I. S. Mumick. Materialized Views: Techniques, Implementations, and
Applications. MIT Press, 1999.
īļ J. Han. Towards on-line analytical mining in large databases. ACM SIGMOD Record,
27:97-107, 1998.
īļ V. Harinarayan, A. Rajaraman, and J. D. Ullman. Implementing data cubes efficiently.
SIGMOD’96
64July 13, 2013
References (II)References (II)
īļ C. Imhoff, N. Galemmo, and J. G. Geiger. Mastering Data Warehouse Design: Relational
and Dimensional Techniques. John Wiley, 2003
īļ W. H. Inmon. Building the Data Warehouse. John Wiley, 1996
īļ R. Kimball and M. Ross. The Data Warehouse Toolkit: The Complete Guide to
Dimensional Modeling. 2ed. John Wiley, 2002
īļ P. O'Neil and D. Quass. Improved query performance with variant indexes. SIGMOD'97
īļ Microsoft. OLEDB for OLAP programmer's reference version 1.0. In
http://www.microsoft.com/data/oledb/olap, 1998
īļ A. Shoshani. OLAP and statistical databases: Similarities and differences. PODS’00.
īļ S. Sarawagi and M. Stonebraker. Efficient organization of large multidimensional arrays.
ICDE'94
īļ OLAP council. MDAPI specification version 2.0. In
http://www.olapcouncil.org/research/apily.htm, 1998
īļ E. Thomsen. OLAP Solutions: Building Multidimensional Information Systems. John
Wiley, 1997
īļ P. Valduriez. Join indices. ACM Trans. Database Systems, 12:218-246, 1987.
īļ J. Widom. Research problems in data warehousing. CIKM’95.
July 13, 2013 65
Pasca Sarjana Universitas Bunda Mulia
Magister Komputer
Thank YouThank You

More Related Content

What's hot

Data warehouse and data mining
Data warehouse and data miningData warehouse and data mining
Data warehouse and data miningRohit Kumar
 
Data Mining Concepts and Techniques
Data Mining Concepts and TechniquesData Mining Concepts and Techniques
Data Mining Concepts and TechniquesPratik Tambekar
 
Difference between data warehouse and data mining
Difference between data warehouse and data miningDifference between data warehouse and data mining
Difference between data warehouse and data miningmaxonlinetr
 
Data mining and data warehousing
Data mining and data warehousingData mining and data warehousing
Data mining and data warehousingumesh patil
 
Data Warehousing Overview
Data Warehousing OverviewData Warehousing Overview
Data Warehousing OverviewAhmed Gamal
 
Gulabs Ppt On Data Warehousing And Mining
Gulabs Ppt On Data Warehousing And MiningGulabs Ppt On Data Warehousing And Mining
Gulabs Ppt On Data Warehousing And Mininggulab sharma
 
Introduction to Data Mining
Introduction to Data Mining Introduction to Data Mining
Introduction to Data Mining Sushil Kulkarni
 
Data warehousing and Data mining
Data warehousing and Data mining Data warehousing and Data mining
Data warehousing and Data mining Bahria University ,
 
Data warehouse and data mining
Data warehouse and data miningData warehouse and data mining
Data warehouse and data miningPradnya Saval
 
Data mining & data warehousing (ppt)
Data mining & data warehousing (ppt)Data mining & data warehousing (ppt)
Data mining & data warehousing (ppt)Harish Chand
 
Introduction to Data Warehousing
Introduction to Data WarehousingIntroduction to Data Warehousing
Introduction to Data WarehousingDr. Sunil Kr. Pandey
 
Data Warehouse
Data Warehouse Data Warehouse
Data Warehouse MadhuriNigam1
 
Business intelligence and data warehousing
Business intelligence and data warehousingBusiness intelligence and data warehousing
Business intelligence and data warehousingOZ Assignment help
 
Dwdm unit 1-2016-Data ingarehousing
Dwdm unit 1-2016-Data ingarehousingDwdm unit 1-2016-Data ingarehousing
Dwdm unit 1-2016-Data ingarehousingDhilsath Fathima
 
PowerPoint Template
PowerPoint TemplatePowerPoint Template
PowerPoint Templatebutest
 

What's hot (20)

Data warehouse and data mining
Data warehouse and data miningData warehouse and data mining
Data warehouse and data mining
 
Data Mining Concepts and Techniques
Data Mining Concepts and TechniquesData Mining Concepts and Techniques
Data Mining Concepts and Techniques
 
Data warehousing
Data warehousingData warehousing
Data warehousing
 
2. olap warehouse
2. olap warehouse2. olap warehouse
2. olap warehouse
 
Difference between data warehouse and data mining
Difference between data warehouse and data miningDifference between data warehouse and data mining
Difference between data warehouse and data mining
 
Data mining and data warehousing
Data mining and data warehousingData mining and data warehousing
Data mining and data warehousing
 
Data Warehousing Overview
Data Warehousing OverviewData Warehousing Overview
Data Warehousing Overview
 
Gulabs Ppt On Data Warehousing And Mining
Gulabs Ppt On Data Warehousing And MiningGulabs Ppt On Data Warehousing And Mining
Gulabs Ppt On Data Warehousing And Mining
 
Introduction to Data Mining
Introduction to Data Mining Introduction to Data Mining
Introduction to Data Mining
 
Data warehousing and Data mining
Data warehousing and Data mining Data warehousing and Data mining
Data warehousing and Data mining
 
Data warehouse and data mining
Data warehouse and data miningData warehouse and data mining
Data warehouse and data mining
 
Data mining & data warehousing (ppt)
Data mining & data warehousing (ppt)Data mining & data warehousing (ppt)
Data mining & data warehousing (ppt)
 
Introduction to Data Warehousing
Introduction to Data WarehousingIntroduction to Data Warehousing
Introduction to Data Warehousing
 
Data Warehouse
Data Warehouse Data Warehouse
Data Warehouse
 
Business intelligence and data warehousing
Business intelligence and data warehousingBusiness intelligence and data warehousing
Business intelligence and data warehousing
 
Dbm630_lecture02-03
Dbm630_lecture02-03Dbm630_lecture02-03
Dbm630_lecture02-03
 
Dwdm unit 1-2016-Data ingarehousing
Dwdm unit 1-2016-Data ingarehousingDwdm unit 1-2016-Data ingarehousing
Dwdm unit 1-2016-Data ingarehousing
 
DATA WAREHOUSING AND DATA MINING
DATA WAREHOUSING AND DATA MININGDATA WAREHOUSING AND DATA MINING
DATA WAREHOUSING AND DATA MINING
 
PowerPoint Template
PowerPoint TemplatePowerPoint Template
PowerPoint Template
 
Abstract
AbstractAbstract
Abstract
 

Viewers also liked (8)

A14 web to store
A14 web to storeA14 web to store
A14 web to store
 
Coffee and tv week 3
Coffee and tv   week 3Coffee and tv   week 3
Coffee and tv week 3
 
Coffee and tv week 2
Coffee and tv   week 2Coffee and tv   week 2
Coffee and tv week 2
 
My cv 2
My cv 2My cv 2
My cv 2
 
Sta moramo uraditi da bi videli nocu
Sta moramo uraditi da bi videli nocuSta moramo uraditi da bi videli nocu
Sta moramo uraditi da bi videli nocu
 
The Evolution of Development Testing
The Evolution of Development TestingThe Evolution of Development Testing
The Evolution of Development Testing
 
Suisse tourisme stratÊgie web - ET8
Suisse tourisme stratÊgie web  - ET8Suisse tourisme stratÊgie web  - ET8
Suisse tourisme stratÊgie web - ET8
 
Coffee and tv week 1
Coffee and tv   week 1Coffee and tv   week 1
Coffee and tv week 1
 

Similar to Yoyopresentasi 1225941108853502-8 2

DataMining and OLAP Technology Concepts Presented By Quontra Solutions
DataMining and OLAP Technology Concepts Presented By Quontra SolutionsDataMining and OLAP Technology Concepts Presented By Quontra Solutions
DataMining and OLAP Technology Concepts Presented By Quontra SolutionsQuontra Solutions
 
UNIT 1- Data Warehouse.pdf
UNIT 1- Data Warehouse.pdfUNIT 1- Data Warehouse.pdf
UNIT 1- Data Warehouse.pdfNancykumari47
 
Dataware house multidimensionalmodelling
Dataware house multidimensionalmodellingDataware house multidimensionalmodelling
Dataware house multidimensionalmodellingmeghu123
 
Datawarehousing
DatawarehousingDatawarehousing
Datawarehousingwork
 
11666 Bitt I 2008 Lect3
11666 Bitt I 2008 Lect311666 Bitt I 2008 Lect3
11666 Bitt I 2008 Lect3ambujm
 
Data Warehousing and Data Mining
Data Warehousing and Data MiningData Warehousing and Data Mining
Data Warehousing and Data Miningidnats
 
1.4 data warehouse
1.4 data warehouse1.4 data warehouse
1.4 data warehouseKrish_ver2
 
Advances And Research Directions In Data-Warehousing Technology
Advances And Research Directions In Data-Warehousing TechnologyAdvances And Research Directions In Data-Warehousing Technology
Advances And Research Directions In Data-Warehousing TechnologyKate Campbell
 
Data warehouse
Data warehouseData warehouse
Data warehouseMR Z
 
Data mining 2 - Data warehouse (cheat sheet - printable)
Data mining 2 - Data warehouse (cheat sheet - printable)Data mining 2 - Data warehouse (cheat sheet - printable)
Data mining 2 - Data warehouse (cheat sheet - printable)yesheeka
 
11667 Bitt I 2008 Lect4
11667 Bitt I 2008 Lect411667 Bitt I 2008 Lect4
11667 Bitt I 2008 Lect4ambujm
 
Introduction to Data Warehouse
Introduction to Data WarehouseIntroduction to Data Warehouse
Introduction to Data WarehouseSOMASUNDARAM T
 
Dataware housing
Dataware housingDataware housing
Dataware housingwork
 

Similar to Yoyopresentasi 1225941108853502-8 2 (20)

DataMining and OLAP Technology Concepts Presented By Quontra Solutions
DataMining and OLAP Technology Concepts Presented By Quontra SolutionsDataMining and OLAP Technology Concepts Presented By Quontra Solutions
DataMining and OLAP Technology Concepts Presented By Quontra Solutions
 
Chpt2.ppt
Chpt2.pptChpt2.ppt
Chpt2.ppt
 
Ch03
Ch03Ch03
Ch03
 
UNIT 1- Data Warehouse.pdf
UNIT 1- Data Warehouse.pdfUNIT 1- Data Warehouse.pdf
UNIT 1- Data Warehouse.pdf
 
Dataware house multidimensionalmodelling
Dataware house multidimensionalmodellingDataware house multidimensionalmodelling
Dataware house multidimensionalmodelling
 
Datawarehousing
DatawarehousingDatawarehousing
Datawarehousing
 
Data mining notes
Data mining notesData mining notes
Data mining notes
 
Introduction to Data Mining
Introduction to Data MiningIntroduction to Data Mining
Introduction to Data Mining
 
11666 Bitt I 2008 Lect3
11666 Bitt I 2008 Lect311666 Bitt I 2008 Lect3
11666 Bitt I 2008 Lect3
 
Data Warehousing and Data Mining
Data Warehousing and Data MiningData Warehousing and Data Mining
Data Warehousing and Data Mining
 
Dbm630_Lecture02-03
Dbm630_Lecture02-03Dbm630_Lecture02-03
Dbm630_Lecture02-03
 
OLAP technology
OLAP technologyOLAP technology
OLAP technology
 
Chapter 2
Chapter 2Chapter 2
Chapter 2
 
1.4 data warehouse
1.4 data warehouse1.4 data warehouse
1.4 data warehouse
 
Advances And Research Directions In Data-Warehousing Technology
Advances And Research Directions In Data-Warehousing TechnologyAdvances And Research Directions In Data-Warehousing Technology
Advances And Research Directions In Data-Warehousing Technology
 
Data warehouse
Data warehouseData warehouse
Data warehouse
 
Data mining 2 - Data warehouse (cheat sheet - printable)
Data mining 2 - Data warehouse (cheat sheet - printable)Data mining 2 - Data warehouse (cheat sheet - printable)
Data mining 2 - Data warehouse (cheat sheet - printable)
 
11667 Bitt I 2008 Lect4
11667 Bitt I 2008 Lect411667 Bitt I 2008 Lect4
11667 Bitt I 2008 Lect4
 
Introduction to Data Warehouse
Introduction to Data WarehouseIntroduction to Data Warehouse
Introduction to Data Warehouse
 
Dataware housing
Dataware housingDataware housing
Dataware housing
 

Recently uploaded

Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayMakMakNepo
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........LeaCamillePacle
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Romantic Opera MUSIC FOR GRADE NINE pptx
Romantic Opera MUSIC FOR GRADE NINE pptxRomantic Opera MUSIC FOR GRADE NINE pptx
Romantic Opera MUSIC FOR GRADE NINE pptxsqpmdrvczh
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxLigayaBacuel1
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
ROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationAadityaSharma884161
 
HáģŒC TáģT TIáēžNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIáēžT - Cáēĸ NĂ...
HáģŒC TáģT TIáēžNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIáēžT - Cáēĸ NĂ...HáģŒC TáģT TIáēžNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIáēžT - Cáēĸ NĂ...
HáģŒC TáģT TIáēžNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIáēžT - Cáēĸ NĂ...Nguyen Thanh Tu Collection
 

Recently uploaded (20)

Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up Friday
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Romantic Opera MUSIC FOR GRADE NINE pptx
Romantic Opera MUSIC FOR GRADE NINE pptxRomantic Opera MUSIC FOR GRADE NINE pptx
Romantic Opera MUSIC FOR GRADE NINE pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptx
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
ROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint Presentation
 
HáģŒC TáģT TIáēžNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIáēžT - Cáēĸ NĂ...
HáģŒC TáģT TIáēžNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIáēžT - Cáēĸ NĂ...HáģŒC TáģT TIáēžNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIáēžT - Cáēĸ NĂ...
HáģŒC TáģT TIáēžNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIáēžT - Cáēĸ NĂ...
 

Yoyopresentasi 1225941108853502-8 2

  • 1. July 13, 2013 1 Pasca Sarjana Universitas Bunda Mulia Magister Komputer Data WarehousingData Warehousing andand OLAP TechnologyOLAP Technology Oleh : Nama : Sunaryo Tandi N I M : (0801050005)
  • 2. 2July 13, 2013 Data Mining:Data Mining: Concepts and TechniquesConcepts and Techniques — Chapter 3 —— Chapter 3 — Jiawei Han Department of Computer Science University of Illinois at Urbana-Champaign www.cs.uiuc.edu/~hanj Š2006 Jiawei Han and Micheline Kamber, All rights reserved
  • 3. 3July 13, 2013 Chapter 3: Data Warehousing and OLAP Technology: An OverviewChapter 3: Data Warehousing and OLAP Technology: An Overview īļ What is a data warehouse? īļ A multi-dimensional data model īļ Data warehouse architecture īļ Data warehouse implementation īļ From data warehousing to data mining
  • 4. 4July 13, 2013 Which are our lowest/highest margin customers ? Which are our lowest/highest margin customers ? Who are my customers and what products are they buying? Who are my customers and what products are they buying? Which customers are most likely to go to the competition ? Which customers are most likely to go to the competition ? What impact will new products/services have on revenue and margins? What impact will new products/services have on revenue and margins? What product prom- -otions have the biggest impact on revenue? What product prom- -otions have the biggest impact on revenue? What is the most effective distribution channel? What is the most effective distribution channel? A producer wants to knowâ€Ļ.A producer wants to knowâ€Ļ.
  • 5. 5July 13, 2013 What is Data Warehouse?What is Data Warehouse? īļ Defined in many different ways, but not rigorously. ī‚§ A decision support database that is maintained separately from the organization’s operational database ī‚§ Support information processing by providing a solid platform of consolidated, historical data for analysis. īļ “A data warehouse is a subject-oriented, integrated, time-variant, and nonvolatile collection of data in support of management’s decision-making process.”—W. H. Inmon īļ Data warehousing: ī‚§ The process of constructing and using data warehouses
  • 6. 6July 13, 2013 Data Warehouse—Subject-OrientedData Warehouse—Subject-Oriented īļ Organized around major subjects, such as customer, product, sales īļ Focusing on the modeling and analysis of data for decision makers, not on daily operations or transaction processing īļ Provide a simple and concise view around particular subject issues by excluding data that are not useful in the decision support process
  • 7. 7July 13, 2013 Data Warehouse—IntegratedData Warehouse—Integrated īļ Constructed by integrating multiple, heterogeneous data sources ī‚§ relational databases, flat files, on-line transaction records īļ Data cleaning and data integration techniques are applied. ī‚§ Ensure consistency in naming conventions, encoding structures, attribute measures, etc. among different data sources â€ĸ E.g., Hotel price: currency, tax, breakfast covered, etc. ī‚§ When data is moved to the warehouse, it is converted.
  • 8. 8July 13, 2013 Data Warehouse—Time VariantData Warehouse—Time Variant īļ The time horizon for the data warehouse is significantly longer than that of operational systems ī‚§ Operational database: current value data ī‚§ Data warehouse data: provide information from a historical perspective (e.g., past 5-10 years) īļ Every key structure in the data warehouse ī‚§ Contains an element of time, explicitly or implicitly ī‚§ But the key of operational data may or may not contain “time element”
  • 9. 9July 13, 2013 Data Warehouse—NonvolatileData Warehouse—Nonvolatile īļ A physically separate store of data transformed from the operational environment īļ Operational update of data does not occur in the data warehouse environment ī‚§ Does not require transaction processing, recovery, and concurrency control mechanisms ī‚§ Requires only two operations in data accessing: â€ĸ initial loading of data and access of data
  • 10. 10July 13, 2013 Data Warehouse vs. Heterogeneous DBMSData Warehouse vs. Heterogeneous DBMS īļ Traditional heterogeneous DB integration: A query driven approach ī‚§ Build wrappers/mediators on top of heterogeneous databases ī‚§ When a query is posed to a client site, a meta-dictionary is used to translate the query into queries appropriate for individual heterogeneous sites involved, and the results are integrated into a global answer set ī‚§ Complex information filtering, compete for resources īļ Data warehouse: update-driven, high performance ī‚§ Information from heterogeneous sources is integrated in advance and stored in warehouses for direct query and analysis
  • 11. 11July 13, 2013 Data Warehouse vs. Operational DBMSData Warehouse vs. Operational DBMS īļ OLTP (on-line transaction processing) ī‚§ Major task of traditional relational DBMS ī‚§ Day-to-day operations: purchasing, inventory, banking, manufacturing, payroll, registration, accounting, etc. īļ OLAP (on-line analytical processing) ī‚§ Major task of data warehouse system ī‚§ Data analysis and decision making īļ Distinct features (OLTP vs. OLAP): ī‚§ User and system orientation: customer vs. market ī‚§ Data contents: current, detailed vs. historical, consolidated ī‚§ Database design: ER + application vs. star + subject ī‚§ View: current, local vs. evolutionary, integrated ī‚§ Access patterns: update vs. read-only but complex queries
  • 12. 12July 13, 2013 So, what’s different?So, what’s different?
  • 13. 13July 13, 2013 OLTP vs. OLAPOLTP vs. OLAP OLTP OLAP users clerk, IT professional knowledge worker function day to day operations decision support DB design application-oriented subject-oriented data current, up-to-date detailed, flat relational isolated historical, summarized, multidimensional integrated, consolidated usage repetitive ad-hoc access read/write index/hash on prim. key lots of scans unit of work short, simple transaction complex query # records accessed tens millions #users thousands hundreds DB size 100MB-GB 100GB-TB metric transaction throughput query throughput, response
  • 14. 14July 13, 2013 Application-Orientation vs. Subject-OrientationApplication-Orientation vs. Subject-Orientation Application-Orientation Operationa l Database Loans Credit Card Trust Savings Subject-Orientation Data Warehouse Customer Vendor Product Activity
  • 15. 15July 13, 2013 Why Separate Data Warehouse?Why Separate Data Warehouse? īļ High performance for both systems ī‚§ DBMS— tuned for OLTP: access methods, indexing, concurrency control, recovery ī‚§ Warehouse—tuned for OLAP: complex OLAP queries, multidimensional view, consolidation īļ Different functions and different data: ī‚§ missing data: Decision support requires historical data which operational DBs do not typically maintain ī‚§ data consolidation: DS requires consolidation (aggregation, summarization) of data from heterogeneous sources ī‚§ data quality: different sources typically use inconsistent data representations, codes and formats which have to be reconciled īļ Note: There are more and more systems which perform OLAP analysis directly on relational databases
  • 16. 16July 13, 2013 To summarize ...To summarize ... īļ OLTP Systems are used to “run” a business īļ The Data Warehouse helps to “optimize” the business
  • 17. 17July 13, 2013 Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP Technology: An OverviewTechnology: An Overview īļWhat is a data warehouse? īļA multi-dimensional data model īļData warehouse architecture īļData warehouse implementation īļFrom data warehousing to data mining
  • 18. 18July 13, 2013 From Tables and Spreadsheets to Data CubesFrom Tables and Spreadsheets to Data Cubes īļ A data warehouse is based on a multidimensional data model which views data in the form of a data cube īļ A data cube, such as sales, allows data to be modeled and viewed in multiple dimensions ī‚§ Dimension tables, such as item (item_name, brand, type), or time(day, week, month, quarter, year) ī‚§ Fact table contains measures (such as dollars_sold) and keys to each of the related dimension tables īļ In data warehousing literature, an n-D base cube is called a base cuboid. The top most 0-D cuboid, which holds the highest-level of summarization, is called the apex cuboid. The lattice of cuboids forms a data cube.
  • 19. 19July 13, 2013 Cube: A Lattice of CuboidsCube: A Lattice of Cuboids time,item time,item,location time, item, location, supplier all time item location supplier time,location time,supplier item,location item,supplier location,supplier time,item,supplier time,location,supplier item,location,supplier 0-D(apex) cuboid 1-D cuboids 2-D cuboids 3-D cuboids 4-D(base) cuboid
  • 20. 20July 13, 2013 Conceptual Modeling of Data WarehousesConceptual Modeling of Data Warehouses īļ Modeling data warehouses: dimensions & measures ī‚§ Star schema: A fact table in the middle connected to a set of dimension tables ī‚§ Snowflake schema: A refinement of star schema where some dimensional hierarchy is normalized into a set of smaller dimension tables, forming a shape similar to snowflake ī‚§ Fact constellations: Multiple fact tables share dimension tables, viewed as a collection of stars, therefore called galaxy schema or fact constellation
  • 21. 21July 13, 2013 Example of Star SchemaExample of Star Schema time_key day day_of_the_week month quarter year time location_key street city state_or_province country location Sales Fact Table time_key item_key branch_key location_key units_sold dollars_sold avg_sales Measures item_key item_name brand type supplier_type item branch_key branch_name branch_type branch
  • 22. 22July 13, 2013 Example of Snowflake SchemaExample of Snowflake Schema time_key day day_of_the_week month quarter year time location_key street city_key location Sales Fact Table time_key item_key branch_key location_key units_sold dollars_sold avg_sales Measures item_key item_name brand type supplier_key item branch_key branch_name branch_type branch supplier_key supplier_type supplier city_key city state_or_province country city
  • 23. 23July 13, 2013 Example of Fact ConstellationExample of Fact Constellation time_key day day_of_the_week month quarter year time location_key street city province_or_state country location Sales Fact Table time_key item_key branch_key location_key units_sold dollars_sold avg_sales Measures item_key item_name brand type supplier_type item branch_key branch_name branch_type branch Shipping Fact Table time_key item_key shipper_key from_location to_location dollars_cost units_shipped shipper_key shipper_name location_key shipper_type shipper
  • 24. 24July 13, 2013 Cube Definition Syntax (BNF) in DMQLCube Definition Syntax (BNF) in DMQL īļ Cube Definition (Fact Table) define cube <cube_name> [<dimension_list>]: <measure_list> īļ Dimension Definition (Dimension Table) define dimension <dimension_name> as (<attribute_or_subdimension_list>) īļ Special Case (Shared Dimension Tables) ī‚§ First time as “cube definition” ī‚§ define dimension <dimension_name> as <dimension_name_first_time> in cube <cube_name_first_time>
  • 25. 25July 13, 2013 Defining Star Schema in DMQLDefining Star Schema in DMQL define cube sales_star [time, item, branch, location]: dollars_sold = sum(sales_in_dollars), avg_sales = avg(sales_in_dollars), units_sold = count(*) define dimension time as (time_key, day, day_of_week, month, quarter, year) define dimension item as (item_key, item_name, brand, type, supplier_type) define dimension branch as (branch_key, branch_name, branch_type) define dimension location as (location_key, street, city, province_or_state, country)
  • 26. 26July 13, 2013 Defining Snowflake Schema in DMQLDefining Snowflake Schema in DMQL define cube sales_snowflake [time, item, branch, location]: dollars_sold = sum(sales_in_dollars), avg_sales = avg(sales_in_dollars), units_sold = count(*) define dimension time as (time_key, day, day_of_week, month, quarter, year) define dimension item as (item_key, item_name, brand, type, supplier(supplier_key, supplier_type)) define dimension branch as (branch_key, branch_name, branch_type) define dimension location as (location_key, street, city(city_key, province_or_state, country))
  • 27. 27July 13, 2013 Defining Fact Constellation in DMQLDefining Fact Constellation in DMQL define cube sales [time, item, branch, location]: dollars_sold = sum(sales_in_dollars), avg_sales = avg(sales_in_dollars), units_sold = count(*) define dimension time as (time_key, day, day_of_week, month, quarter, year) define dimension item as (item_key, item_name, brand, type, supplier_type) define dimension branch as (branch_key, branch_name, branch_type) define dimension location as (location_key, street, city, province_or_state, country) define cube shipping [time, item, shipper, from_location, to_location]: dollar_cost = sum(cost_in_dollars), unit_shipped = count(*) define dimension time as time in cube sales define dimension item as item in cube sales define dimension shipper as (shipper_key, shipper_name, location as location in cube sales, shipper_type) define dimension from_location as location in cube sales define dimension to_location as location in cube sales
  • 28. 28July 13, 2013 Measures of Data Cube: Three CategoriesMeasures of Data Cube: Three Categories īļ Distributive: if the result derived by applying the function to n aggregate values is the same as that derived by applying the function on all the data without partitioning â€ĸ E.g., count(), sum(), min(), max() īļ Algebraic: if it can be computed by an algebraic function with M arguments (where M is a bounded integer), each of which is obtained by applying a distributive aggregate function â€ĸ E.g., avg(), min_N(), standard_deviation() īļ Holistic: if there is no constant bound on the storage size needed to describe a subaggregate. â€ĸ E.g., median(), mode(), rank()
  • 29. 29July 13, 2013 A Concept Hierarchy: Dimension (location)A Concept Hierarchy: Dimension (location) all Europe North_America MexicoCanadaSpainGermany Vancouver M. WindL. Chan ... ...... ... ... ... all region office country TorontoFrankfurtcity
  • 30. 30July 13, 2013 View of Warehouses and HierarchiesView of Warehouses and Hierarchies Specification of hierarchies īļ Schema hierarchy day < {month < quarter; week} < year īļ Set_grouping hierarchy {1..10} < inexpensive
  • 31. 31July 13, 2013 Multidimensional DataMultidimensional Data īļSales volume as a function of product, month, and region ProductRegion Month Dimensions: Product, Location, Time Hierarchical summarization paths Industry Region Year Category Country Quarter Product City Month Week Office Day
  • 32. 32July 13, 2013 A Sample Data CubeA Sample Data Cube Total annual sales of TV in U.S.A.Date Product Country sum sum TV VCR PC 1Qtr 2Qtr 3Qtr 4Qtr U.S.A Canada Mexico sum
  • 33. 33July 13, 2013 Cuboids Corresponding to the CubeCuboids Corresponding to the Cube all product date country product,date product,country date, country product, date, country 0-D(apex) cuboid 1-D cuboids 2-D cuboids 3-D(base) cuboid
  • 34. 34July 13, 2013 Browsing a Data CubeBrowsing a Data Cube īļVisualization īļOLAP capabilities īļInteractive manipulation
  • 35. 35July 13, 2013 Typical OLAP OperationsTypical OLAP Operations īļ Roll up (drill-up): summarize data ī‚§ by climbing up hierarchy or by dimension reduction īļ Drill down (roll down): reverse of roll-up ī‚§ from higher level summary to lower level summary or detailed data, or introducing new dimensions īļ Slice and dice: project and select īļ Pivot (rotate): ī‚§ reorient the cube, visualization, 3D to series of 2D planes īļ Other operations ī‚§ drill across: involving (across) more than one fact table ī‚§ drill through: through the bottom level of the cube to its back- end relational tables (using SQL)
  • 36. 36July 13, 2013 Fig. 3.10 Typical OLAP Operations
  • 37. 37July 13, 2013 A Star-Net Query ModelA Star-Net Query Model Shipping Method AIR-EXPRESS TRUCK ORDER Customer Orders CONTRACTS Customer Product PRODUCT GROUP PRODUCT LINE PRODUCT ITEM SALES PERSON DISTRICT DIVISION OrganizationPromotion CITY COUNTRY REGION Location DAILYQTRLYANNUALY Time Each circle is called a footprint
  • 38. 38July 13, 2013 Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP Technology: An OverviewTechnology: An Overview īļWhat is a data warehouse? īļA multi-dimensional data model īļData warehouse architecture īļData warehouse implementation īļFrom data warehousing to data mining
  • 39. 39July 13, 2013 Design of Data Warehouse: A BusinessDesign of Data Warehouse: A Business Analysis FrameworkAnalysis Framework īļ Four views regarding the design of a data warehouse ī‚§ Top-down view â€ĸ allows selection of the relevant information necessary for the data warehouse ī‚§ Data source view â€ĸ exposes the information being captured, stored, and managed by operational systems ī‚§ Data warehouse view â€ĸ consists of fact tables and dimension tables ī‚§ Business query view â€ĸ sees the perspectives of data in the warehouse from the view of end-user
  • 40. 40July 13, 2013 Data Warehouse Design ProcessData Warehouse Design Process īļ Top-down, bottom-up approaches or a combination of both ī‚§ Top-down: Starts with overall design and planning (mature) ī‚§ Bottom-up: Starts with experiments and prototypes (rapid) īļ From software engineering point of view ī‚§ Waterfall: structured and systematic analysis at each step before proceeding to the next ī‚§ Spiral: rapid generation of increasingly functional systems, short turn around time, quick turn around īļ Typical data warehouse design process ī‚§ Choose a business process to model, e.g., orders, invoices, etc. ī‚§ Choose the grain (atomic level of data) of the business process ī‚§ Choose the dimensions that will apply to each fact table record ī‚§ Choose the measure that will populate each fact table record
  • 41. 41July 13, 2013 Data Warehouse: A Multi-Tiered ArchitectureData Warehouse: A Multi-Tiered Architecture Data Warehouse Extract Transform Load Refresh OLAP Engine Analysis Query Reports Data mining Monitor & Integrator Metadata Data Sources Front-End Tools Serve Data Marts Operational DBs Other sources Data Storage OLAP Server
  • 42. 42July 13, 2013 Three Data Warehouse ModelsThree Data Warehouse Models īļ Enterprise warehouse ī‚§ collects all of the information about subjects spanning the entire organization īļ Data Mart ī‚§ a subset of corporate-wide data that is of value to a specific groups of users. Its scope is confined to specific, selected groups, such as marketing data mart â€ĸ Independent vs. dependent (directly from warehouse) data mart īļ Virtual warehouse ī‚§ A set of views over operational databases ī‚§ Only some of the possible summary views may be materialized
  • 43. 43July 13, 2013 Data Warehouse Development: AData Warehouse Development: A Recommended ApproachRecommended Approach Define a high-level corporate data model Data Mart Data Mart Distributed Data Marts Multi-Tier Data Warehouse Enterprise Data Warehouse Model refinementModel refinement
  • 44. 44July 13, 2013 Data Mart CentricData Mart Centric Data Marts Data Sources Data Warehouse
  • 45. 45July 13, 2013 Problems with Data Mart Centric SolutionProblems with Data Mart Centric Solution If you end up creating multiple warehouses, integrating them is a problem
  • 46. 46July 13, 2013 True WarehouseTrue Warehouse Data Marts Data Sources Data Warehouse
  • 47. 47July 13, 2013 Data Warehouse Back-End Tools and UtilitiesData Warehouse Back-End Tools and Utilities īļ Data extraction ī‚§ get data from multiple, heterogeneous, and external sources īļ Data cleaning ī‚§ detect errors in the data and rectify them when possible īļ Data transformation ī‚§ convert data from legacy or host format to warehouse format īļ Load ī‚§ sort, summarize, consolidate, compute views, check integrity, and build indicies and partitions īļ Refresh ī‚§ propagate the updates from the data sources to the warehouse
  • 48. 48July 13, 2013 Metadata RepositoryMetadata Repository īļ Meta data is the data defining warehouse objects. It stores: īļ Description of the structure of the data warehouse ī‚§ schema, view, dimensions, hierarchies, derived data defn, data mart locations and contents īļ Operational meta-data ī‚§ data lineage (history of migrated data and transformation path), currency of data (active, archived, or purged), monitoring information (warehouse usage statistics, error reports, audit trails) īļ The algorithms used for summarization īļ The mapping from operational environment to the data warehouse īļ Data related to system performance ī‚§ warehouse schema, view and derived data definitions īļ Business data ī‚§ business terms and definitions, ownership of data, charging
  • 49. 49July 13, 2013 OLAP Server ArchitecturesOLAP Server Architectures īļ Relational OLAP (ROLAP) ī‚§ Use relational or extended-relational DBMS to store and manage warehouse data and OLAP middle ware ī‚§ Include optimization of DBMS backend, implementation of aggregation navigation logic, and additional tools and services ī‚§ Greater scalability īļ Multidimensional OLAP (MOLAP) ī‚§ Sparse array-based multidimensional storage engine ī‚§ Fast indexing to pre-computed summarized data īļ Hybrid OLAP (HOLAP) (e.g., Microsoft SQLServer) ī‚§ Flexibility, e.g., low level: relational, high-level: array īļ Specialized SQL servers (e.g., Redbricks) ī‚§ Specialized support for SQL queries over star/snowflake schemas
  • 50. 50July 13, 2013 Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP Technology: An OverviewTechnology: An Overview īļWhat is a data warehouse? īļA multi-dimensional data model īļData warehouse architecture īļData warehouse implementation īļFrom data warehousing to data mining
  • 51. 51July 13, 2013 Efficient Data Cube ComputationEfficient Data Cube Computation īļ Data cube can be viewed as a lattice of cuboids ī‚§ The bottom-most cuboid is the base cuboid ī‚§ The top-most cuboid (apex) contains only one cell ī‚§ How many cuboids in an n-dimensional cube with L levels? īļ Materialization of data cube ī‚§ Materialize every (cuboid) (full materialization), none (no materialization), or some (partial materialization) ī‚§ Selection of which cuboids to materialize â€ĸ Based on size, sharing, access frequency, etc. )1 1 ( +∏ = = n i iLT
  • 52. 52July 13, 2013 Cube OperationCube Operation īļ Cube definition and computation in DMQL define cube sales[item, city, year]: sum(sales_in_dollars) compute cube sales īļ Transform it into a SQL-like language (with a new operator cube by, introduced by Gray et al.’96) SELECT item, city, year, SUM (amount) FROM SALES CUBE BY item, city, year īļ Need compute the following Group-Bys (date, product, customer), (date,product),(date, customer), (product, customer), (date), (product), (customer) () (item)(city) () (year) (city, item) (city, year) (item, year) (city, item, year)
  • 53. 53July 13, 2013 Iceberg CubeIceberg Cube īļ Computing only the cuboid cells whose count or other aggregates satisfying the condition like HAVING COUNT(*) >= minsup īļ Motivation ī‚§ Only a small portion of cube cells may be “above the water’’ in a sparse cube ī‚§ Only calculate “interesting” cells—data above certain threshold ī‚§ Avoid explosive growth of the cube â€ĸ Suppose 100 dimensions, only 1 base cell. How many aggregate cells if count >= 1? What about count >= 2?
  • 54. 54July 13, 2013 Indexing OLAP Data: Bitmap IndexIndexing OLAP Data: Bitmap Index īļ Index on a particular column īļ Each value in the column has a bit vector: bit-op is fast īļ The length of the bit vector: # of records in the base table īļ The i-th bit is set if the i-th row of the base table has the value for the indexed column īļ not suitable for high cardinality domains Cust Region Type C1 Asia Retail C2 Europe Dealer C3 Asia Dealer C4 America Retail C5 Europe Dealer RecID Retail Dealer 1 1 0 2 0 1 3 0 1 4 1 0 5 0 1 RecIDAsia Europe America 1 1 0 0 2 0 1 0 3 1 0 0 4 0 0 1 5 0 1 0 Base table Index on Region Index on Type
  • 55. 55July 13, 2013 Indexing OLAP Data: Join IndicesIndexing OLAP Data: Join Indices īļ Join index: JI(R-id, S-id) where R (R-id, â€Ļ) ī€žī€ŧ S (S-id, â€Ļ) īļ Traditional indices map the values to a list of record ids ī‚§ It materializes relational join in JI file and speeds up relational join īļ In data warehouses, join index relates the values of the dimensions of a start schema to rows in the fact table. ī‚§ E.g. fact table: Sales and two dimensions city and product â€ĸ A join index on city maintains for each distinct city a list of R-IDs of the tuples recording the Sales in the city ī‚§ Join indices can span multiple dimensions
  • 56. 56July 13, 2013 Efficient Processing OLAP QueriesEfficient Processing OLAP Queries īļ Determine which operations should be performed on the available cuboids ī‚§ Transform drill, roll, etc. into corresponding SQL and/or OLAP operations, e.g., dice = selection + projection īļ Determine which materialized cuboid(s) should be selected for OLAP op. ī‚§ Let the query to be processed be on {brand, province_or_state} with the condition “year = 2004”, and there are 4 materialized cuboids available: 1) {year, item_name, city} 2) {year, brand, country} 3) {year, brand, province_or_state} 4) {item_name, province_or_state} where year = 2004 Which should be selected to process the query? īļ Explore indexing structures and compressed vs. dense array structs in MOLAP
  • 57. 57July 13, 2013 Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP Technology: An OverviewTechnology: An Overview īļWhat is a data warehouse? īļA multi-dimensional data model īļData warehouse architecture īļData warehouse implementation īļFrom data warehousing to data mining
  • 58. 58July 13, 2013 Data Warehouse UsageData Warehouse Usage īļ Three kinds of data warehouse applications ī‚§ Information processing â€ĸ supports querying, basic statistical analysis, and reporting using crosstabs, tables, charts and graphs ī‚§ Analytical processing â€ĸ multidimensional analysis of data warehouse data â€ĸ supports basic OLAP operations, slice-dice, drilling, pivoting ī‚§ Data mining â€ĸ knowledge discovery from hidden patterns â€ĸ supports associations, constructing analytical models, performing classification and prediction, and presenting the mining results using visualization tools
  • 59. 59July 13, 2013 From On-Line Analytical Processing (OLAP)From On-Line Analytical Processing (OLAP) to On Line Analytical Mining (OLAM)to On Line Analytical Mining (OLAM) īļ Why online analytical mining? ī‚§ High quality of data in data warehouses â€ĸ DW contains integrated, consistent, cleaned data ī‚§ Available information processing structure surrounding data warehouses â€ĸ ODBC, OLEDB, Web accessing, service facilities, reporting and OLAP tools ī‚§ OLAP-based exploratory data analysis â€ĸ Mining with drilling, dicing, pivoting, etc. ī‚§ On-line selection of data mining functions â€ĸ Integration and swapping of multiple mining functions, algorithms, and tasks
  • 60. 60July 13, 2013 An OLAM System ArchitectureAn OLAM System Architecture Data Warehouse Meta Data MDDB OLAM Engine OLAP Engine User GUI API Data Cube API Database API Data cleaning Data integration Layer3 OLAP/OLAM Layer2 MDDB Layer1 Data Repository Layer4 User Interface Filtering&Integration Filtering Databases Mining query Mining result
  • 61. 61July 13, 2013 Chapter 3: Data Warehousing and OLAPChapter 3: Data Warehousing and OLAP Technology: An OverviewTechnology: An Overview īļWhat is a data warehouse? īļA multi-dimensional data model īļData warehouse architecture īļData warehouse implementation īļFrom data warehousing to data mining īļSummary
  • 62. 62July 13, 2013 Summary: Data Warehouse and OLAP TechnologySummary: Data Warehouse and OLAP Technology īļ Why data warehousing? īļ A multi-dimensional model of a data warehouse ī‚§ Star schema, snowflake schema, fact constellations ī‚§ A data cube consists of dimensions & measures īļ OLAP operations: drilling, rolling, slicing, dicing and pivoting īļ Data warehouse architecture īļ OLAP servers: ROLAP, MOLAP, HOLAP īļ Efficient computation of data cubes ī‚§ Partial vs. full vs. no materialization ī‚§ Indexing OALP data: Bitmap index and join index ī‚§ OLAP query processing īļ From OLAP to OLAM (on-line analytical mining)
  • 63. 63July 13, 2013 References (I)References (I) īļ S. Agarwal, R. Agrawal, P. M. Deshpande, A. Gupta, J. F. Naughton, R. Ramakrishnan, and S. Sarawagi. On the computation of multidimensional aggregates. VLDB’96 īļ D. Agrawal, A. E. Abbadi, A. Singh, and T. Yurek. Efficient view maintenance in data warehouses. SIGMOD’97 īļ R. Agrawal, A. Gupta, and S. Sarawagi. Modeling multidimensional databases. ICDE’97 īļ S. Chaudhuri and U. Dayal. An overview of data warehousing and OLAP technology. ACM SIGMOD Record, 26:65-74, 1997 īļ E. F. Codd, S. B. Codd, and C. T. Salley. Beyond decision support. Computer World, 27, July 1993. īļ J. Gray, et al. Data cube: A relational aggregation operator generalizing group-by, cross-tab and sub-totals. Data Mining and Knowledge Discovery, 1:29-54, 1997. īļ A. Gupta and I. S. Mumick. Materialized Views: Techniques, Implementations, and Applications. MIT Press, 1999. īļ J. Han. Towards on-line analytical mining in large databases. ACM SIGMOD Record, 27:97-107, 1998. īļ V. Harinarayan, A. Rajaraman, and J. D. Ullman. Implementing data cubes efficiently. SIGMOD’96
  • 64. 64July 13, 2013 References (II)References (II) īļ C. Imhoff, N. Galemmo, and J. G. Geiger. Mastering Data Warehouse Design: Relational and Dimensional Techniques. John Wiley, 2003 īļ W. H. Inmon. Building the Data Warehouse. John Wiley, 1996 īļ R. Kimball and M. Ross. The Data Warehouse Toolkit: The Complete Guide to Dimensional Modeling. 2ed. John Wiley, 2002 īļ P. O'Neil and D. Quass. Improved query performance with variant indexes. SIGMOD'97 īļ Microsoft. OLEDB for OLAP programmer's reference version 1.0. In http://www.microsoft.com/data/oledb/olap, 1998 īļ A. Shoshani. OLAP and statistical databases: Similarities and differences. PODS’00. īļ S. Sarawagi and M. Stonebraker. Efficient organization of large multidimensional arrays. ICDE'94 īļ OLAP council. MDAPI specification version 2.0. In http://www.olapcouncil.org/research/apily.htm, 1998 īļ E. Thomsen. OLAP Solutions: Building Multidimensional Information Systems. John Wiley, 1997 īļ P. Valduriez. Join indices. ACM Trans. Database Systems, 12:218-246, 1987. īļ J. Widom. Research problems in data warehousing. CIKM’95.
  • 65. July 13, 2013 65 Pasca Sarjana Universitas Bunda Mulia Magister Komputer Thank YouThank You