Published on

Database Design Fundamentals For Software Engineers | Characteristics of the Database Approach

Authors

4 - Characteristics of the Database Approach

IndexContent
1Introduction & File-based system
2What is Database?
3Database Management System (DBMS)
4Characteristics of the Database Approach
5Benefits of the Database Approach

What are Characteristics of the Database Approach?

  1. Self-describing nature of a database system A database system is self-describing because it not only contains the database itself, but also the meta-data, which defines and describes the data and relationships between tables in the database. This information is stored in a catalog by the DBMS software.

  2. Insulation between program and data In the database approach, the data structure is stored in the system catalog and not in the programs. Therefore, one change is all that is needed to change the structure of a file. This insulation between the programs and data is also called program-data independence.

  3. Support for multiple views of data A database supports multiple views of data. A view is a subset of the database, which is defined and dedicated for particular users of the system. Multiple users in the system might have different views of the system

  4. Sharing data and multiuser system Current database systems are designed for multiple users. That is, they allow many users to access the same database at the same time. This access is achieved through features called concurrency control strategies .