It's hardware that makes a machine fast. It's software that makes
a fast machine slow --Craig Bruce
One of the most common activity in a data warehouse environment
is loading data into the database. The volume of data to be
loaded is large compared to a transaction processing system. Tens
or hundreds of megabytes of data may be need to be loaded in a
data warehouse environment from one file. Compare this to one
transaction, which is probably less than a kilobyte, in the
transaction processing environment. The large throughput required
for data warehouse data loads is achieved by:
- using database utilities built specifically for the purpose,
as opposed to the common SQL INSERT command; and
- aggressive parallelism: task, …