Er. Nawaraj Bhandari
Data Warehouse/Data Mining
Chapter 2:
Data Warehouse Logical Design
Data marts
• A data mart is a simple form of a data warehouse that is focused on a
single subject (or functional area), such as Sales or Finance or
Marketing.
• Data marts are often built and controlled by a single department
within an organization.
• Given their single-subject focus, data marts usually draw data from
only a few sources.
• The sources could be internal operational systems, a central data
warehouse, or external data.
Types of Data Marts
• Dependent Data Marts
• Independent Data Marts
• Hybrid Data Marts
Dependent Data Marts
A dependent data mart is created from an existing enterprise data warehouse.
It is the top-down approach that begins with storing all business data in one central
location, then extracts a clearly defined portion of the data when needed for analysis.
To create data mart from a data warehouse, a specific set of data is aggregated
(formed into a cluster) from the warehouse, restructured, then loaded to the data mart
where it can be queried.
Dependent Data Marts
It can be a logical view or physical subset of the data warehouse:
Logical view - A virtual table that is not a part of the physical database schema.
Physical subset - Data extract that is a part of the database schema.
Independent Data Marts
A independent data mart is a stand-alone system—created without the
use of a data warehouse—that focuses on one subject area or business
function.
Data is extracted from internal or external data sources (or both),
processed, then loaded to the data mart repository where it is stored
until needed for business analytics.
Independent data marts are not difficult to design and develop.
They are beneficial to achieve short-term goals but may become
cumbersome to manage—each with its own ETL tool and logic—as
business needs expand and become more complex.
Independent Data Marts
Hybrid Data Marts
• A hybrid data mart combines data from an existing data warehouse
and other operational source systems.
• It unites the speed and end-user focus of a top-down approach with
the benefits of the enterprise-level integration of the bottom up
method.
Meta Data
Metadata is simply defined as data about data. The data that is used to represent
other data is known as metadata.
For example, the index of a book serves as a metadata for the contents in the book. In
other words, we can say that metadata is the summarized data that leads us to
detailed data. In terms of data warehouse, we can define metadata as follows.
• Metadata is the road-map to a data warehouse.
• Metadata in a data warehouse defines the warehouse objects.
• Metadata acts as a directory. This directory helps the decision
support system to locate the contents of a data warehouse.
Meta Data
Metadata can be broadly categorized into three categories:
Business Metadata - It has the data ownership information, business definition, and changing
policies.
Technical Metadata - It includes database system names, table and column names and sizes,
data types and allowed values. Technical metadata also includes structural information such as
primary and foreign key attributes and indices.
Operational Metadata - It includes currency of data and data lineage. Currency of data means
whether the data is active, archived. Lineage of data means the history of data migrated and
transformation applied on it.
Multidimensional Data Model
Data warehouses and OLAP tools are based on a multidimensional data model. This model
views data in the form of a data cube.
A multidimensional database (MDB) is a type of database that is optimized for data warehouse
and online analytical processing (OLAP) applications.
Multidimensional databases are frequently created using input from existing relational
databases.
Whereas a relational database is typically accessed using a Structured Query Language (SQL)
query, a multidimensional database allows a user to ask questions like "How many Aptivas have
been sold in Nebraska so far this year?" and similar questions related to summarizing business
operations and trends.
An OLAP application that accesses data from a multidimensional database is known as a
MOLAP (multidimensional OLAP) application.
Fact table
A fact table is the central table in a star schema of a data warehouse. A
fact table stores quantitative information for analysis and is often
denormalized.
A fact table works with dimension tables. A fact table holds the data to
be analyzed, and a dimension table stores data about the ways in which
the data in the fact table can be analyzed. Thus, the fact table consists
of two types of columns.
The foreign keys column allows joins with dimension tables, and the
measures columns contain the data that is being analyzed.
Dimension table
A dimension table is a table in a star schema of a data warehouse. A
dimension table stores attributes, or dimensions, that describe the
objects in a fact table.
In data warehousing, a dimension is a collection of reference
information about a measurable event. These events are known as facts
and are stored in a fact table.
Dimensions categorize and describe data warehouse facts and
measures in ways that support meaningful answers to business
questions. They form the very core of dimensional modeling.
Fact & Dimension Table
 A data warehouse, however, requires a concise, subject-
oriented schema that facilitates on-line data processing
(OLAP).
 The most popular data model for a data warehouse is a
multidimensional model.
 Such a model can exist in the following forms
 a star schema
 a snowflake schema
 a fact constellation schema.
 The major focus will be on the star schema which is
commonly used in the design of many data warehouse.
Data Warehouse Schema
Star Schema
 The star schema is a data modeling technique used to map
multidimensional decision support into a relational database.
 Star schemas yield an easily implemented model for multidimensional
data analysis while still preserving the relational structure of the
operational database.
 Others name: star-join schema, data cube, data list, grid file and
multi-dimension schema
Figure: Components of a star schema
Fact tables contain factual
or quantitative data
Dimension tables are
denormalized to maximize
performance
Dimension tables
contain descriptions about
the subjects of the
business
1:N relationship
between
dimension tables
and fact tables
Excellent for ad-hoc queries, but bad for online transaction processing
Figure: Star schema of a data warehouse for sales
Star Schema
 The schema contains a central fact table for sales
that contains keys to each of the four dimensions,
along with two measures: dollars_sold, and
units_sold.
 To minimize the size of the fact table, dimension
identifiers (such as time key and item key) are
system-generated identifiers.
 Notice that in the star schema, each dimension is
represented by only one table, and each table
contains a set of attributes.
 For example, the location dimension table contains
the attribute set {location key, street, city, province or
state, country}
Star Schema
Defining a 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)
Figure: Star Schema for Sales
Star Schema
Advantages of Star Schema
 Star Schema is very easy to understand, even for non technical
business manager.
 Star Schema provides better performance and smaller query times
 Star Schema is easily extensible and will handle future changes easily
Snowflake Schema
A schema is called a snowflake schema if one or more dimension tables do not
join directly to the fact table but must join through other dimension tables.
It is a variant of star schema model. It has a single, large and central fact table
and one or more tables for each dimension.
Characteristics:
- Normalization of dimension tables
- Each hierarchical level has its own table
- less memory space is required
- a lot of joins can be required if they involve attributes in secondary dimension
tables
Figure: Snowflake schema of a data warehouse for sales
Snowflake Schema
Defining a 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))
Order No
Order Date
Customer No
Customer
Name
Customer
Address
City
SalespersonID
SalespersonName
City
Quota
OrderNO
SalespersonID
CustomerNO
ProdNo
DateKey
CityName
Quantity
Total Price
ProductNO
ProdName
ProdDescr
Category
Category
UnitPrice
DateKey
Date
Month
CityName
State
Country
Order
Customer
Salesperson
City
Date
Product
Fact Table
CategoryName
CategoryDescr
Month
Year
Year
StateName
Country
Category
State
Month
Year
Snowflake Schema
Figure: Snowflake Schema
Store Key
Product Key
Period Key
Units
Price
Time Dimension
Product
Dimension
Store Key
Store Name
City Key
Period Key
Year
Quarter
Month
Product Key
Product Desc
City Key
City
State
Region
City Dimension
Store Dimension Fact Table
Snowflake Schema
Difference between Star Schema and Snow-
flake Schema
 Star Schema is a multi-dimension model where each of its disjoint dimension is
represented in single table.
 Snow-flake is normalized multi-dimension schema when each of disjoint dimension
is represent in multiple tables.
 Star schema can become a snow-flake
 Both star and snowflake schemas are dimensional models; the difference is in their
physical implementations.
 Snowflake schemas support ease of dimension maintenance because they are more
normalized.
 Star schemas are easier for direct user access and often support simpler and more
efficient queries.
 It may be better to create a star version of the snowflaked dimension for
presentation to the users
 Multiple fact tables share dimension tables.
 This schema is viewed as collection of stars hence called as galaxy schema
or fact constellation.
 Sophisticated application requires such schema.
 In the Fact Constellations, aggregate tables are created separately from the
detail, therefore, it is impossible to pick up, for example, Store detail when
querying the District Fact Table.
 Fact Constellation is a good alternative to the Star, but when dimensions
have very high cardinality, the sub-selects in the dimension tables can be a
source of delay.
Fact-Constellation Schema
Figure: Fact constellation schema of a data warehouse for sales and
shipping
Fact-Constellation Schema
Defining a 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
Store Key
Product Key
Period Key
Units
Price
Store Dimension
Product
Dimension
Sales
Fact Table
Store Key
Store Name
City
State
Region
Product Key
Product Desc
Shipper Key
Store Key
Product Key
Period Key
Units
Price
Shipping
Fact Table
More Examples on Fact-Constellation Schema
More Examples on Fact-Constellation Schema
An online order wine company requires the designing of a data warehouse to record the quantity and
sales of its wines to its customers. Part of the original database is composed by the following tables:
CUSTOMER (Code, Name, Address, Phone, BDay, Gender)
WINE (Code, Name, Type, Vintage, BottlePrice, CasePrice, Class)
CLASS (Code, Name, Region)
TIME (TimeStamp, Date, Year)
ORDER (Customer, Wine, Time, nrBottles, nrCases)
Note that the tables represent the main entities of the ER schema, thus it is necessary to derive the
significant relationships among them in order to correctly design the data warehouse.
Construct Snowflake Schema.
Assignment
Let us consider the case of a real estate agency whose database is
composed by the following tables:
OWNER (IDOwner, Name, Surname, Address, City, Phone)
ESTATE (IDEstate, IDOwner, Category, Area, City, Province, Rooms,
Bedrooms, Garage, Meters)
CUSTOMER (IDCust, Name, Surname, Budget, Address, City, Phone)
AGENT (IDAgent, Name, Surname, Office, Address, City, Phone)
AGENDA (IDAgent, Data, Hour, IDEstate, ClientName)
VISIT (IDEstate, IDAgent, IDCust, Date, Duration)
SALE (IDEstate, IDAgent, IDCust, Date, AgreedPrice, Status)
RENT (IDEstate, IDAgent, IDCust, Date, Price, Status, Time)
Design a Star Schema or Snowflake Schema for the DW.
Class Assignment
Figure: Star schema
Figure: Snowflake schema
References
 https://www.comp.nus.edu.sg/~lingtw/cs4221/dw.pdf
 https://www.investopedia.com/terms/d/data-warehousing.asp
 http://datawarehouse4u.info/
 https://docs.oracle.com/cd/A81042_01/DOC/server.816/a76994/marts.htm
 https://searchoracle.techtarget.com/definition/multidimensional-database
 Sam Anahory, Dennis Murray, “Data warehousing In the Real World”, Pearson Education.
 Kimball, R. “The Data Warehouse Toolkit”, Wiley, 1996.
 Teorey, T. J., “Database Modeling and Design: The Entity-Relationship Approach”,
Morgan Kaufmann Publishers, Inc., 1990.
 “An Overview of Data Warehousing and OLAP Technology”, S. Chaudhuri, Microsoft
Research
 “Data Warehousing with Oracle”, M. A. Shahzad
ANY QUESTIONS?

Data warehouse logical design

  • 1.
    Er. Nawaraj Bhandari DataWarehouse/Data Mining Chapter 2: Data Warehouse Logical Design
  • 2.
    Data marts • Adata mart is a simple form of a data warehouse that is focused on a single subject (or functional area), such as Sales or Finance or Marketing. • Data marts are often built and controlled by a single department within an organization. • Given their single-subject focus, data marts usually draw data from only a few sources. • The sources could be internal operational systems, a central data warehouse, or external data.
  • 3.
    Types of DataMarts • Dependent Data Marts • Independent Data Marts • Hybrid Data Marts
  • 4.
    Dependent Data Marts Adependent data mart is created from an existing enterprise data warehouse. It is the top-down approach that begins with storing all business data in one central location, then extracts a clearly defined portion of the data when needed for analysis. To create data mart from a data warehouse, a specific set of data is aggregated (formed into a cluster) from the warehouse, restructured, then loaded to the data mart where it can be queried.
  • 5.
    Dependent Data Marts Itcan be a logical view or physical subset of the data warehouse: Logical view - A virtual table that is not a part of the physical database schema. Physical subset - Data extract that is a part of the database schema.
  • 6.
    Independent Data Marts Aindependent data mart is a stand-alone system—created without the use of a data warehouse—that focuses on one subject area or business function. Data is extracted from internal or external data sources (or both), processed, then loaded to the data mart repository where it is stored until needed for business analytics. Independent data marts are not difficult to design and develop. They are beneficial to achieve short-term goals but may become cumbersome to manage—each with its own ETL tool and logic—as business needs expand and become more complex.
  • 7.
  • 8.
    Hybrid Data Marts •A hybrid data mart combines data from an existing data warehouse and other operational source systems. • It unites the speed and end-user focus of a top-down approach with the benefits of the enterprise-level integration of the bottom up method.
  • 9.
    Meta Data Metadata issimply defined as data about data. The data that is used to represent other data is known as metadata. For example, the index of a book serves as a metadata for the contents in the book. In other words, we can say that metadata is the summarized data that leads us to detailed data. In terms of data warehouse, we can define metadata as follows. • Metadata is the road-map to a data warehouse. • Metadata in a data warehouse defines the warehouse objects. • Metadata acts as a directory. This directory helps the decision support system to locate the contents of a data warehouse.
  • 10.
    Meta Data Metadata canbe broadly categorized into three categories: Business Metadata - It has the data ownership information, business definition, and changing policies. Technical Metadata - It includes database system names, table and column names and sizes, data types and allowed values. Technical metadata also includes structural information such as primary and foreign key attributes and indices. Operational Metadata - It includes currency of data and data lineage. Currency of data means whether the data is active, archived. Lineage of data means the history of data migrated and transformation applied on it.
  • 11.
    Multidimensional Data Model Datawarehouses and OLAP tools are based on a multidimensional data model. This model views data in the form of a data cube. A multidimensional database (MDB) is a type of database that is optimized for data warehouse and online analytical processing (OLAP) applications. Multidimensional databases are frequently created using input from existing relational databases. Whereas a relational database is typically accessed using a Structured Query Language (SQL) query, a multidimensional database allows a user to ask questions like "How many Aptivas have been sold in Nebraska so far this year?" and similar questions related to summarizing business operations and trends. An OLAP application that accesses data from a multidimensional database is known as a MOLAP (multidimensional OLAP) application.
  • 12.
    Fact table A facttable is the central table in a star schema of a data warehouse. A fact table stores quantitative information for analysis and is often denormalized. A fact table works with dimension tables. A fact table holds the data to be analyzed, and a dimension table stores data about the ways in which the data in the fact table can be analyzed. Thus, the fact table consists of two types of columns. The foreign keys column allows joins with dimension tables, and the measures columns contain the data that is being analyzed.
  • 13.
    Dimension table A dimensiontable is a table in a star schema of a data warehouse. A dimension table stores attributes, or dimensions, that describe the objects in a fact table. In data warehousing, a dimension is a collection of reference information about a measurable event. These events are known as facts and are stored in a fact table. Dimensions categorize and describe data warehouse facts and measures in ways that support meaningful answers to business questions. They form the very core of dimensional modeling.
  • 14.
  • 15.
     A datawarehouse, however, requires a concise, subject- oriented schema that facilitates on-line data processing (OLAP).  The most popular data model for a data warehouse is a multidimensional model.  Such a model can exist in the following forms  a star schema  a snowflake schema  a fact constellation schema.  The major focus will be on the star schema which is commonly used in the design of many data warehouse. Data Warehouse Schema
  • 16.
    Star Schema  Thestar schema is a data modeling technique used to map multidimensional decision support into a relational database.  Star schemas yield an easily implemented model for multidimensional data analysis while still preserving the relational structure of the operational database.  Others name: star-join schema, data cube, data list, grid file and multi-dimension schema
  • 17.
    Figure: Components ofa star schema Fact tables contain factual or quantitative data Dimension tables are denormalized to maximize performance Dimension tables contain descriptions about the subjects of the business 1:N relationship between dimension tables and fact tables Excellent for ad-hoc queries, but bad for online transaction processing
  • 18.
    Figure: Star schemaof a data warehouse for sales Star Schema
  • 19.
     The schemacontains a central fact table for sales that contains keys to each of the four dimensions, along with two measures: dollars_sold, and units_sold.  To minimize the size of the fact table, dimension identifiers (such as time key and item key) are system-generated identifiers.  Notice that in the star schema, each dimension is represented by only one table, and each table contains a set of attributes.  For example, the location dimension table contains the attribute set {location key, street, city, province or state, country} Star Schema
  • 20.
    Defining a StarSchema 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)
  • 21.
    Figure: Star Schemafor Sales Star Schema
  • 22.
    Advantages of StarSchema  Star Schema is very easy to understand, even for non technical business manager.  Star Schema provides better performance and smaller query times  Star Schema is easily extensible and will handle future changes easily
  • 23.
    Snowflake Schema A schemais called a snowflake schema if one or more dimension tables do not join directly to the fact table but must join through other dimension tables. It is a variant of star schema model. It has a single, large and central fact table and one or more tables for each dimension. Characteristics: - Normalization of dimension tables - Each hierarchical level has its own table - less memory space is required - a lot of joins can be required if they involve attributes in secondary dimension tables
  • 24.
    Figure: Snowflake schemaof a data warehouse for sales Snowflake Schema
  • 25.
    Defining a SnowflakeSchema 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))
  • 26.
    Order No Order Date CustomerNo Customer Name Customer Address City SalespersonID SalespersonName City Quota OrderNO SalespersonID CustomerNO ProdNo DateKey CityName Quantity Total Price ProductNO ProdName ProdDescr Category Category UnitPrice DateKey Date Month CityName State Country Order Customer Salesperson City Date Product Fact Table CategoryName CategoryDescr Month Year Year StateName Country Category State Month Year Snowflake Schema
  • 27.
    Figure: Snowflake Schema StoreKey Product Key Period Key Units Price Time Dimension Product Dimension Store Key Store Name City Key Period Key Year Quarter Month Product Key Product Desc City Key City State Region City Dimension Store Dimension Fact Table Snowflake Schema
  • 28.
    Difference between StarSchema and Snow- flake Schema  Star Schema is a multi-dimension model where each of its disjoint dimension is represented in single table.  Snow-flake is normalized multi-dimension schema when each of disjoint dimension is represent in multiple tables.  Star schema can become a snow-flake  Both star and snowflake schemas are dimensional models; the difference is in their physical implementations.  Snowflake schemas support ease of dimension maintenance because they are more normalized.  Star schemas are easier for direct user access and often support simpler and more efficient queries.  It may be better to create a star version of the snowflaked dimension for presentation to the users
  • 29.
     Multiple facttables share dimension tables.  This schema is viewed as collection of stars hence called as galaxy schema or fact constellation.  Sophisticated application requires such schema.  In the Fact Constellations, aggregate tables are created separately from the detail, therefore, it is impossible to pick up, for example, Store detail when querying the District Fact Table.  Fact Constellation is a good alternative to the Star, but when dimensions have very high cardinality, the sub-selects in the dimension tables can be a source of delay. Fact-Constellation Schema
  • 30.
    Figure: Fact constellationschema of a data warehouse for sales and shipping Fact-Constellation Schema
  • 31.
    Defining a FactConstellation 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
  • 32.
    Store Key Product Key PeriodKey Units Price Store Dimension Product Dimension Sales Fact Table Store Key Store Name City State Region Product Key Product Desc Shipper Key Store Key Product Key Period Key Units Price Shipping Fact Table More Examples on Fact-Constellation Schema
  • 33.
    More Examples onFact-Constellation Schema
  • 34.
    An online orderwine company requires the designing of a data warehouse to record the quantity and sales of its wines to its customers. Part of the original database is composed by the following tables: CUSTOMER (Code, Name, Address, Phone, BDay, Gender) WINE (Code, Name, Type, Vintage, BottlePrice, CasePrice, Class) CLASS (Code, Name, Region) TIME (TimeStamp, Date, Year) ORDER (Customer, Wine, Time, nrBottles, nrCases) Note that the tables represent the main entities of the ER schema, thus it is necessary to derive the significant relationships among them in order to correctly design the data warehouse. Construct Snowflake Schema. Assignment
  • 35.
    Let us considerthe case of a real estate agency whose database is composed by the following tables: OWNER (IDOwner, Name, Surname, Address, City, Phone) ESTATE (IDEstate, IDOwner, Category, Area, City, Province, Rooms, Bedrooms, Garage, Meters) CUSTOMER (IDCust, Name, Surname, Budget, Address, City, Phone) AGENT (IDAgent, Name, Surname, Office, Address, City, Phone) AGENDA (IDAgent, Data, Hour, IDEstate, ClientName) VISIT (IDEstate, IDAgent, IDCust, Date, Duration) SALE (IDEstate, IDAgent, IDCust, Date, AgreedPrice, Status) RENT (IDEstate, IDAgent, IDCust, Date, Price, Status, Time) Design a Star Schema or Snowflake Schema for the DW. Class Assignment
  • 36.
  • 37.
  • 38.
    References  https://www.comp.nus.edu.sg/~lingtw/cs4221/dw.pdf  https://www.investopedia.com/terms/d/data-warehousing.asp http://datawarehouse4u.info/  https://docs.oracle.com/cd/A81042_01/DOC/server.816/a76994/marts.htm  https://searchoracle.techtarget.com/definition/multidimensional-database  Sam Anahory, Dennis Murray, “Data warehousing In the Real World”, Pearson Education.  Kimball, R. “The Data Warehouse Toolkit”, Wiley, 1996.  Teorey, T. J., “Database Modeling and Design: The Entity-Relationship Approach”, Morgan Kaufmann Publishers, Inc., 1990.  “An Overview of Data Warehousing and OLAP Technology”, S. Chaudhuri, Microsoft Research  “Data Warehousing with Oracle”, M. A. Shahzad
  • 39.