DBMS Info Stored on Disk
The following DBMS info is persisted on disk and hence would involve requests through the buffer and storage manager for to access and manipulate:
- Data: the contents of the database itself.
- Metadata: the database schema that describes the structure of and constraints on the database.
- Log Records: information about recent changes to the database; these are used to make ensure the durability of data stored in the database.
- Statistics: information gathered and stored by the DBMS such as sizes of various relations, etc.
- Indexes: data structures used to help speed up access to data in the database.