What is Data Dictionary

What is Data Dictionary


A data dictionary contains metadata i.e., data about the database. The data dictionary is very important as it contains information such as what is in the database, who is allowed to access it, where is the database physically stored etc. The users of the database normally don't interact with the data dictionary, it is only handled by the database administrators.

The data dictionary in general contains information about the following −

  • Names of all the database tables and their schemas.
  • Details about all the tables in the database, such as their owners, their security constraints, when they were created etc.
  • Physical information about the tables such as where they are stored and how.
  • Table constraints such as primary key attributes, foreign key information etc.
  • Information about the database views that are visible.

This is a data dictionary describing a table that contains employee details.

Field NameData TypeField Size for displayDescriptionExample
EmployeeNumberInteger10Unique ID of each employee1645000001
NameText20Name of the employeeDavid Heston
Date of BirthDate/Time10DOB of Employee08/03/1995
Phone NumberInteger10Phone number of employee6583648648

The different types of data dictionary are −

Active Data Dictionary

If the structure of the database or its specifications change at any point of time, it should be reflected in the data dictionary. This is the responsibility of the database management system in which the data dictionary resides.

So, the data dictionary is automatically updated by the database management system when any changes are made in the database. This is known as an active data dictionary as it is self updating.

Passive Data Dictionary

This is not as useful or easy to handle as an active data dictionary. A passive data dictionary is maintained separately to the database whose contents are stored in the dictionary. That means that if the database is modified the database dictionary is not automatically updated as in the case of Active Data Dictionary. 

So, the passive data dictionary has to be manually updated to match the database. This needs careful handling or else the database and data dictionary are out of sync.

Updated on: 31-Oct-2023

46K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements