Relational Concepts  «Prev 

Purpose Stages of Data Normalization

When we design a database for an enterprise, the main objective is to create an accurate representation of the data, relationships between the data, and constraints on the data that is pertinent to the enterprise. To help achieve this objective, we can use one or more database design techniques. One of those techniques is called Entity-Relationship (ER) modeling.
This module discusses the database design technique called normalization.
Normalization is a database design technique, which begins by examining the relationships (called functional dependencies) between attributes. Attributes describe some property of the data or of the relationships between the data that is important to the enterprise. Normalization uses a series of tests (described as normal forms) to help identify the optimal grouping for these attributes to ultimately identify a set of suitable relations that supports the data requirements of the enterprise.
While the main purpose of this module is to introduce the concept of functional dependencies and describe normalization up to Third Normal Form (3NF), later we will take a more formal look at functional dependencies and also consider later normal forms that go beyond 3NF.
w

Purpose of Normalization

Normalization is a technique for producing a set of relations with desirable properties, given the data requirements of an enterprise.
The purpose of normalization is to identify a suitable set of relations that support the data requirements of an enterprise. The characteristics of a suitable set of relations include the following:
  1. n the minimal number of attributes necessary to support the data requirements of the enterprise;
  2. n attributes with a close logical relationship (described as functional dependency) are found in the same relation;
  3. n minimal redundancy with each attribute represented only once with the important exception of attributes that form all or part of foreign keys , which are essential for the joining of related relations.
The benefits of using a database that has a suitable set of relations is that the database will be easier for the user to access and maintain the data, and take up minimal storage space on the computer.