What is the difference between a database and a data warehouse?

后端 未结 13 2137
感动是毒
感动是毒 2021-01-29 17:27

What is the difference between a database and a data warehouse?

Aren\'t they the same thing, or at least written in the same thing (ie. Oracle RDBMS)?

13条回答
  •  走了就别回头了
    2021-01-29 18:13

    Database:

    Used for Online Transactional Processing (OLTP).

    • Transaction-oriented.
    • Application oriented.
    • Current data.
    • Detailed data.
    • Scalable data.
    • Many Users, Administrators / Operational.
    • Execution time: short.

    Data Warehouse:

    Used for Online Analytical Processing (OLAP).

    • Oriented analysis.
    • Subject oriented.
    • Historical data.
    • Aggregated data.
    • Static data.
    • Not many users, manager.
    • Execution time: long.

提交回复
热议问题