This document discusses storage in database systems, including disks, buffer management, files of records, and access methods. It describes how data is stored on disks in pages and the implications this has for database design, such as the need to carefully plan read and write operations. The buffer manager caches pages in main memory to reduce disk I/O. Files are the abstraction used to organize records across multiple pages on disk. Records can be stored in unordered heap files or other structures like sorted files and indexes to enable different access patterns.