RDBMS Fundamentals

Row-Oriented Database

English

Overview

The traditional database storage approach that stores data grouped together by row (record).

Details

Since all the columns belonging to one record are stored physically close together, it suits transactional processing (OLTP) that reads or writes a single record in full. It's a design philosophy that contrasts with column-oriented databases.

More Database terms