0% found this document useful (0 votes)
15 views

6-chapter six

Chapter Six discusses the normalization of database tables, outlining the process of minimizing data redundancies through various normal forms (1NF, 2NF, 3NF, BCNF, 4NF). It details the steps required to achieve each normal form and emphasizes the importance of identifying dependencies and primary keys. Additionally, the chapter addresses denormalization, highlighting its role in balancing design efficiency and processing speed.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

6-chapter six

Chapter Six discusses the normalization of database tables, outlining the process of minimizing data redundancies through various normal forms (1NF, 2NF, 3NF, BCNF, 4NF). It details the steps required to achieve each normal form and emphasizes the importance of identifying dependencies and primary keys. Additionally, the chapter addresses denormalization, highlighting its role in balancing design efficiency and processing speed.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

Chapter Six……..

Normalization of Database Tables

Contents of this Chapter:

• What normalization is and what role it plays in the database design process
• About the normal forms 1NF, 2NF, 3NF, BCNF, and 4NF
• How normal forms can be transformed from lower normal forms to higher normal forms.
• How normalization and ER modeling are used concurrently to produce a good database
design.
• How some situations require denormalization to generate information efficiently.

6.1 Normalization
Process for evaluating and correcting table structures to minimize data redundancies. It works
through a series of stages called normal forms:

 First normal form (1NF)


 Second normal form (2NF)
 Third normal form (3NF)
 Boyce-Codd normal form (BCNF)
 Fourth normal form (4 NF)


The features of Normalization (continued)

o 2NF is better than 1NF; 3NF is better than 2NF


o For most business database design purposes, 3NF is as high as we need to go in
normalization process
o Highest level of normalization is not always most desirable
6.1.1 The Normalization Process
Each table represents a single subject
No data item will be unnecessarily stored in more than one table
All attributes in a table are dependent on the primary key

6.1.2 Conversion to First Normal Form

1 ‫الصفحة‬ Data Base Course


Chapter Six……..Normalization of Database Tables

The main conditions to apply of the first normal form:


- Remove repeating group.
- Normalizing table structure will reduce data redundancies.
- Normalization is three-step procedure:

Step 1: Eliminate the Repeating Groups:

1- Present data in tabular format, where each cell has single value and there are no repeating
groups.
2- Eliminate repeating groups, eliminate nulls by making sure that each repeating group
attribute contains an appropriate data value.

Step 2: Identify the Primary Key


1- Primary key must uniquely identify attribute value.
2- New key must be composed.
Step 3: Identify All Dependencies
1- Dependencies can be depicted with help of a diagram
2- Dependency diagram:
- Depicts all dependencies found within given table structure
- Helpful in getting bird’s-eye view of all relationships among table’s
Attributes.
- Makes it less likely that will overlook an important dependency.

2 ‫الصفحة‬ Data Base Course


Chapter Six……..Normalization of Database Tables

6.1.3 Second Normal Form


The main features of second normal form as follows:
• Table is in second normal form (2NF) when:
- It is in 1NF.
-It includes no partial dependencies: No attribute is dependent on only portion of
primary key.
• Relational database design can be improved by converting the database into second
normal form (2NF).
• Apply two steps:
Step 1: Write Each Key Component on a Separate Line
• Write each key component on separate line, then write original (composite) key
on last line.
• Each component will become key in new table.
Step 2: Assign Corresponding Dependent Attributes
• Determine those attributes that are dependent on other attributes.
• At this point, most anomalies have been eliminated.

3 ‫الصفحة‬ Data Base Course


Chapter Six……..Normalization of Database Tables

6.1.4 Third Normal Form


Data anomalies created are easily eliminated by completing three steps
Step 1: Identify Each New Determinant
- For every transitive dependency, write its determinant as PK for new table.
- Determinant any attribute whose value determines other values within a row.
Step 2: Identify the Dependent Attributes
– Identify attributes dependent on each determinant identified in Step 1 and identify
dependency.
– Name table to reflect its contents and function.
Step 3: Remove the Dependent Attributes from Transitive Dependencies
– Eliminate all dependent attributes in transitive relationship(s) from each of the
tables that have such a transitive relationship.
– Draw new dependency diagram to show all tables defined in Steps 1–3.
– Check new tables as well as tables modified in Step 3 to make sure that each table
has determinant and that no table contains inappropriate dependencies.

4 ‫الصفحة‬ Data Base Course


Chapter Six……..Normalization of Database Tables

Note:- A table is in third normal form (3NF) when both of the following are true:
– It is in 2NF
– It contains no transitive dependencies

6.1.5 The Boyce-Codd Normal Form (BCNF)


- Every determinant in table is a candidate key: Has same characteristics as primary key,
but for some reason, not chosen to be primary key.
- When table contains only one candidate key, the 3NF and the BCNF are equivalent.
- BCNF can be violated only when table contains more than one candidate key.
- Most designers consider the BCNF as special case of 3NF.
- Table is in 3NF when it is in 2NF and there are no transitive dependencies
- Table can be in 3NF and fails to meet BCNF
No partial dependencies, nor does it contain transitive dependencies.
A nonkey attribute is the determinant of a key attribute.

5 ‫الصفحة‬ Data Base Course


Chapter Six……..Normalization of Database Tables

6.1.6 Fourth Normal Form (4NF)


Table is in fourth normal form (4NF) when both of the following are true:
- It is in 3NF
- Has no multiple sets of multivalued dependencies
4NF is largely academic if tables conform to following two rules:
- All attributes must be dependent on primary key, but independent of each other
- No row contains two or more multivalued facts about an entity

6 ‫الصفحة‬ Data Base Course


Chapter Six……..Normalization of Database Tables

6.2 Denormalization
The main characteristics are:

1- Creation of normalized relations is important database design goal.


2- Processing requirements should also be a goal.
3- If tables decomposed to conform to normalization requirements:
- Number of database tables expands
4- Joining the larger number of tables takes additional input/output (I/O) operations and
processing logic, thereby reducing system speed.
5- Conflicts between design efficiency, information requirements, and processing speed are
often resolved through compromises that may include denormalization.
6- Use denormalization cautiously.
7- Understand why—under some circumstances—unnormalized tables are better choice.

7 ‫الصفحة‬ Data Base Course

You might also like