Column vs Row oriented databases
Mentioned in: _ Database Internals
Tags: Database
Column vs Row oriented databases
Row-oriented databases are more common and store the record values together. They are good when you need to access different values of the same records. Column-oriented dbs store data by columns which improves the operations on specific columns and allows to store data more efficiently.