×

Types of DBMS

Database Management System

A software that is programmed to enable the user to create and maintain a database. Using DBMS, we can implement create, read, update and delete operations on the information stored in a database.

There are various types of DBMS based on the connection of various database elements. The data models of the DBMS are as follows:

  • Entity-Relationship Data Model
  • Relational Data Model
  • Object-Oriented Data Model
  • Semi-Structured Data Model
  • Hierarchical Data Model
  • Network Data Model

Entity-Relationship Data Model

In an entity-relationship model, the data is organized into an entity and related to each other in the form of relationships. Relations tell the association composition between various entities.

Entities are anything that can be mapped with real-world objects; these entities have attributes of their own. These attributes are the properties of the entities.

Types Of DBMS

Relational Data Model

A relational data model constitutes two-dimensional tables. The data is stored in the form of one or more tables. Each table has rows and columns. A unique key identifies each row. Structured Query Language (SQL) is used to handle the Relational Database and its information. This is one of the most used data model types in the industry. Examples of relational data models include any model built using MySQL, Oracle Database etc.

The table below, the Employee table, is an example of a Relational Database.

Employee ID

Employee Name

Department

100

Jane Doe1

Department 1

101

Jane Doe2

Department 2

102

Jane Doe3

Department 3

In the above Employee Table, the Employee ID, Employee Name and Department are the Column name or the attributes of the Employee table where the Employee ID can be used to access each employee entry uniquely.

Object-Oriented Database

In this data model, we arrange the data into objects and classes. This model provides all the features of an object-oriented programming language. It involves multiple objects stored together. It is one of the most efficient data models. It offers all the functionalities that are available in object-oriented programming. We can perform inheritance, encapsulation, polymorphism, and abstraction on the data stored in this data model along with all the existing features provided by the DBMS. It ensures better concurrency controls and transactions to the DBA. It is relatively easier to maintain and requires a comparatively low code to operate. An example of this model is Object DB software.

Types Of DBMS

Semi-Structured Data Model

This model has a flexible structure; the rest of the data models are rigid when it comes to data entry. This data model allows the user to enter the individual data types of the same type, but they are of different attributes. There is no clear distinction between the schema and data in this data model. It is no defined structure and is defined by the amount of data entered, so there is no wastage of space when using this data model. But this model is not well organized. The structure of the model can be modified, to suit the purpose of the organization or the user.

Types Of DBMS

Hierarchical Data Model

This model is similar to a tree in the data structure. A single parent node can have one or more than one child node, which is the case in the hierarchical data model. In this model, the data is organized as the elements where there are one to many relationships among various elements. The side with a single element is higher than the multiple elements. Thus, forming a structure the same as the tree.

  • This model begins with a root node.
  • Each child node is connected to its parent node.
  • It is a top-down approach to the database model.
  • In the industry, this model is used to design and implement the organisation's mainframe platforms.

An example of this model is IMS.

This model is hardly used for personal databases and is usually used in large organizations where different operations are performed at different levels.

E.g., It can be implemented in a college where the college itself will be the root node. To begin with, a single college will have multiple departments, each department will have multiple teachers, and each teacher will be teaching multiple students. There are multiple one to many relations in the given data model. Data from each level can be easily stored in this manner.

Types Of DBMS

Network Data Model

The network data model is somewhat similar to the hierarchical model. The only key difference between these is the relation between the two elements. In a network relationship model, the elements may also have one to one and many to many relationships too. In this model, the data is arranged and connected in a similar way in which the vertices and edges of the graphs are connected. Multiple inheritances are possible in this data model as a child can have multiple parents, and multiple parents can also have multiple children.

For example, A teacher can teach multiple subjects, but at the same time, that same subject can be taught by multiple teachers. And students may opt for multiple subjects, and those subjects can be taught to students by multiple teachers. Thus, forming a graph.

Types Of DBMS

Related Topics

Functional Dependencies

Functional Dependencies (FD) in the relational database management system occurs when one attribute in a relation uniquely determines other attribute in that relation. It describes the relation between the attributes. The term functional...

2 minutes read.

Schedule in DBMS

Schedule A sequence of statements that specify the sequential order in which the statements of concurrent transactions are executed. The transaction will get committed when it executes the instructions successfully without any...

4 minutes read.

DBMS Schema

Schema It is a physical representation of data that appears in the database management system. In simple words, a schema is the structure of any database.It defines how the data is stored...

2 minutes read.

How to draw ER-Diagram in DBMS?

Entity Relationship Diagrams, or ERDs, are diagrams that assist you in visualizing your database design. An ERD, also called anER diagram or ER model,describes data and how parts of the data interact. ERDs are crucial in database architecture and projects that call for...

9 minutes read.

BCNF in DBMS

BCNF stands for Boyce–Codd Normal Form. What is the Normal form? The normal form is mainly used to reduce the redundancy of the database tables. Or we can say that the normal form...

4 minutes read.

Er Diagram Symbols and Notations in DBMS

Entity Relationship Diagram Entity Relationship Diagrams, or ER Diagrams for short, are diagrams that show the relationships among entity sets that are stored in databases. Alternatively said, ER diagrams assist in...

6 minutes read.

Advantages of B-Tree in DBMS

A self-balancing search tree is the B-Tree. It is assumed that everything is in the main memory in most other self-balancing search trees (such as AVL and Red-Black Trees). We must...

3 minutes read.

DBMS Architecture

Architecture of Database Management System DBMS architecture helps in development, implementation, design, and maintenance of a database that store and organize information for agencies, businesses, and institutions. It is the base of any database...

2 minutes read.

Integrity Constraints in DBMS

Integrity constraints in DBMS (Database Management System) are used to ensure the accuracy and consistency of data in a database. They are a set of rules that define the allowed...

1 minute read.

Advantages and Disadvantages of DBMS

We need to understand what is Database Management System before discussing the advantages and disadvantages of the database management system, and also, need to understand what were the technologies and...

5 minutes read.

Checkpoint in DBMS

A checkpoint in DBMS is used to define a point of the transaction that is in a consistent state and then all the transactions will be in the committed state...

4 minutes read.

Redundancy in DBMS

Data redundancy is a situation that is created in the database in which the same amount of data is stored in two different places. The different places are found in a...

3 minutes read.

Difference between Relational and Non-Relational Databases

Databases have become an integral part of our lives, from powering big websites like Amazon and Netflix to everyday tasks like remembering our passwords. With such an indispensable role in...

7 minutes read.

DBMS Examples

Introduction to DBMS A database management system (DBMS) is a software application that is designed to manage and organize data stored in a database. It is responsible for storing, retrieving, and...

4 minutes read.

ER Model: Entity Relationship Diagram (ERD) with Examples

ER model stands for Entity-Relationship Model. It is a high-level data model diagram which defines the conceptual view of the database. It is a blueprint or design of a database that will...

2 minutes read.

Domain Constraints in DBMS

Introduction about DBMS:- DBMS stands for DataBase Management System. DBMS(DataBase Management System) is a type of software by which we can save and retrieve the user's data with the security process....

3 minutes read.

Difference between Dropbox and Amazon Drive

What is Dropbox? It is a file organising company that is owned by the American Company Dropbox Inc. Itsheadquarters is situated in San Francisco, California, U.S. Dropbox offers personal cloud, client...

3 minutes read.

Components of an ER Diagram

An ER Diagram consists of the following components: Entity AttributesRelationships 1. Entity An entity may be an object, place, person, or an event which stores data in the database. In an entity-relationship diagram, an entity...

4 minutes read.

States of Transaction in DBMS

Transaction States A transaction passes through many different states in its life cycle. These states are known as transaction states. A transaction can be in one of the following states in the database: Active statePartially...

3 minutes read.

Foreign key in DBMS

Foreign key in DBMS: The Foreign key is a field or the set of fields in the relational database table, which points to the existing field in another table. It...

2 minutes read.