What is Database Management Software?

Database Management software or systems (DBMS)is the foundation stone of any business intelligence system.

Firstly, what does a DBMS do? Why does it exist?

To store the mountains of data or data records (a data record is set of specific data about an entity e.g. a person, their name, address, telephone number, data of birth etc) and to be able to retrieve a single record very quickly i.e. in microseconds from millions of records.

Software was developed to store the data in a particular format and to create indexes or tabs to quickly retrieve data rather than sequentially reading every record which would take a very long time! The reason why a DBMS uses indexes to retrieve data, is the disk storage mechanisms used are slow to read sequentially through the data.

Note, if the data was all loaded into memory, which is extremely fast, then possibly we would not such sophisticated database management systems that need careful design to maximise performance. One business intelligence (BI) system, Qlikview, operates this way.

In the old days (20 years) ago there used to several types of database systems. The main ones were hierarchical, network and relational.

Today relational database is the predominant type because of its simplicity.

Relational databases, which are based on the mathematical set theory, organises the data into tables or sets. Each object or entity in the database e.g. person, location, order, invoice has it’s own table that only contains information about that entity. Tables have columns for each information descriptor e.g. date of birth, height, weight, or gender and rows for each object occurrence e.g. each person.

Each object occurrence or row has a unique identifier used to retrieve the data correctly. This unique identifier is often called the primary key and is used to build indexes for fast retrieval of the data.

See the example table below that represents a typical database table for a customer. The Customer ID column could be the Unique Primary key.

Sample Database Table

The design of a relational database needs to be done carefully. A process called data normalisation is commonly used to ensure unique identification of the data and that there is no redundancy of data in the system i.e. the same information stored more than once. This is optimal because you would to update the same data several times in the system to ensure accurate records, and this slows down the update performance time.

The data normalisation process is a three step process and is often call putting the data into Third Normal Form (TNF).

Data is retrieved from the database using a language or relational algebra. Today this language is called a structured query language (SQL). Beware each database management system tends to have it own variant of SQL.

Here are some common relational database management software systems today are:

  • Microsoft Access ( for small to medium volumes of data)
  • MySQL (for medium to large volumes of data)
  • SQLAnyWhere (for medium to large volumes of data)
  • Microsoft SQLServer ( for medium to large volumes of data)
  • Oracle (for medium to large volumes of data)


Data warehouses are usually based on medium to large database management software systems.

Return to Top of What is Database Management Software?

Return to An Overview of Business Intelligence Software

Return to What is Business Intelligence?