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

后端 未结 13 2161
感动是毒
感动是毒 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:05

    A data warehouse is a TYPE of database.

    In addition to what folks have already said, data warehouses tend to be OLAP, with indexes, etc. tuned for reading, not writing, and the data is de-normalized / transformed into forms that are easier to read & analyze.

    Some folks have said "databases" are the same as OLTP -- this isn't true. OLTP, again, is a TYPE of database.

    Other types of "databases": Text files, XML, Excel, CSV..., Flat Files :-)

提交回复
热议问题