Submitted by jjadmin on Tue, 03/18/2014 - 08:49
A data warehouse is a database that is designed for querying, analyzing and reporting. A data warehouse is usually separate from your application database. While a regular application database only keeps enough information required to meet the current needs and archive the rest, a data warehouse will have current as well as historical data to support historical analysis. A data warehouse usually gathers data from various sources, and is generally read only as it is used only for querying, analyzing and reporting.
Submitted by jjadmin on Wed, 11/20/2013 - 10:51
Prerequisites
1. Downloading, installing and configuring the database
See the installation and configuration note for your database.
2. Create table and insert data as:
Create table employee(empName varchar(20), id int PRIMARY KEY)
insert into employee values (‘name1’,1)
insert into employee values (‘name2’,2)