What is the difference between a W/H and an OLTP application?
Answer Posted / harshad
Workload
Data warehouses are designed to accommodate ad hoc queries.
You might not
know the workload of your data warehouse in advance, so a
data warehouse
should be optimized to perform well for a wide variety of
possible query
operations.
OLTP systems support only predefined operations. Your
applications might be
specifically tuned or designed to support only these
operations.
■ Data modifications
A data warehouse is updated on a regular basis by the ETL
process (run nightly or
weekly) using bulk data modification techniques. The end
users of a data
warehouse do not directly update the data warehouse.
In OLTP systems, end users routinely issue individual data
modification
statements to the database. The OLTP database is always up
to date, and reflects
the current state of each business transaction.
■ Schema design
Data warehouses often use denormalized or partially
denormalized schemas (such
as a star schema) to optimize query performance.
OLTP systems often use fully normalized schemas to optimize
update/insert/delete performance, and to guarantee data
consistency.
■ Typical operations
A typical data warehouse query scans thousands or millions
of rows. For example,
"Find the total sales for all customers last month."
A typical OLTP operation accesses only a handful of
records. For example,
"Retrieve the current order for this customer."
■ Historical data
Data warehouses usually store many months or years of data.
This is to support
historical analysis.
OLTP systems usually store data from only a few weeks or
months. The OLTP
system stores only historical data as needed to
successfully meet the requirements
of the current transaction.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the function of surrogate key in data warehousing?
What are the mapping paramaters and maping variables?
How to get the first 100 rows from the flat file into the target?
Why is dimensional normalization not required?
What is the difference between view materialized view and view?
What are Aggregate tables?
what is parallel query?
What are various warehousing tools?
In general, how many Fact & Dimension tables are present in a Banking Data warehouse project ?
Difference between e-r modeling and dimentional modeling?
What is loop in data warehousing?
What is edw?
What are target types on the server?
What does level of granularity of a fact table signify?
What is an IDQ file? What is the purpose of the IDQ file and what kindof information does it usualy hold? Can it be imported by informatica?