Categories: DW & ETL

Data Warehouse Concepts

What is a Data Warehouse?

According to Inmon, famous author for several data warehouse books, “A data warehouse is a subject oriented, integrated, time variant, non volatile collection of data in support of management’s decision making process”.

In order to store data, over the years, many application designers in each branch have made their individual decisions as to how an application and database should be built. So source systems will be different in naming conventions, variable measurements, encoding structures, and physical attributes of data. Consider a bank that has got several branches in several countries, has millions of customers and the lines of business of the enterprise are savings, and loans. The following example explains how the data is integrated from source systems to target systems.

Example of Source Data:

System NameAttribute NameColumn NameData TypeValues
Source System 1Customer Application DateCUSTOMER_APPLICATION_DATENUMERIC(8,0)11012005
Source System 2Customer Application DateCUST_APPLICATION_DATEDATE11012005
Source System 3Application DateAPPLICATION_DATEDATE01NOV2005

In the aforementioned example, attribute name, column name, datatype and values are entirely different from one source system to another. This inconsistency in data can be avoided by integrating the data into a data warehouse with good standards.

Example of Target Data (Data Warehouse):

Target SystemAttribute NameColumn NameData TypeValues
Record #1Customer Application DateCUSTOMER_APPLICATION_DATEDATE01112005
Record #2Customer Application DateCUSTOMER_APPLICATION_DATEDATE01112005
Record #3Customer Application DateCUSTOMER_APPLICATION_DATEDATE01112005

In the above example of target data, attribute names, column names, and datatypes are consistent throughout the target system. This is how data from various source system is integrated and accurately stored into the data warehouse.

Data Warehouse Architecture Diagram:

learndmdwbi

View Comments

Share
Published by
learndmdwbi

Recent Posts

Oracle’s Database Dictionary Views

These SQL commands are related with Oracle's data dictionary and can be used to get…

8 months ago

Oracle important DDL Statements

important DDL Statements from Oracle like Commit, Rollback, Grant, Revoke etc..

8 months ago

Oracle Database Data Definition Language(DDL Statements)- DROP Object Commands

In this section, we will try to explain about important database DROP commands that are…

8 months ago

Oracle Database Data Manipulation Language (DML) Commands

In this section, we will try to explain about important database DML commands that are…

8 months ago

Oracle Database Data Definition Language(DDL Statements) – ALTER Commands:

In this section, we will try to explain about important database ALTER commands that are…

8 months ago

Oracle DDL Statements – CREATE Commands

An Oracle database consists of DDL commands, which are useful to create, modify and drop…

8 months ago