Skip to main content

🗓️ 01112024 2108
📎 #data_processing #database

oltp_vs_olap

oltp Systemsolap systems
Large number of transactions by large number of peopleQuerying many records
Fast responseResponse can be much much slower than that of OLTP
Modify small amounts of data frequently and usually involve a balance of reads and writesDo not modify data at all - usually read-intensive
Indexed data to improve response timesStore data in columnar format to allow easy access to large numbers of records
Frequent / concurrent database backupsFar less frequent database backup
Relatively little storage spaceSignificant storage space requirements (a lot of data)
Simple queries involving just one or a few recordsRun complex queries involving large numbers of records

References