What is Normalization ?

Answer Posted / jagan

Normalization is the process of taking data from a problem
and reducing it to a set of relations while ensuring data
integrity and eliminating data redundancy

* Data integrity - all of the data in the database are
consistent, and satisfy all integrity constraints.
* Data redundancy – if data in the database can be found
in two different locations (direct redundancy) or if data
can be calculated from other data items (indirect
redundancy) then the data is said to contain redundancy.

Data should only be stored once and avoid storing data that
can be calculated from other data already held in the
database. During the process of normalization redundancy
must be removed, but not at the expense of breaking data
integrity rules.

If redundancy exists in the database then problems can arise
when the database is in normal operation:

* When data is inserted the data must be duplicated
correctly in all places where there is redundancy. For
instance, if two tables exist for in a database, and both
tables contain the employee name, then creating a new
employee entry requires that both tables be updated with the
employee name.
* When data is modified in the database, if the data
being changed has redundancy, then all versions of the
redundant data must be updated simultaneously. So in the
employee example a change to the employee name must happen
in both tables simultaneously.

The removal of redundancy helps to prevent insertion,
deletion, and update errors, since the data is only
available in one attribute of one table in the database.

The data in the database can be considered to be in one of a
number of `normal forms'. Basically the normal form of the
data indicates how much redundancy is in that data. The
normal forms have a strict ordering:

1. 1st Normal Form
2. 2nd Normal Form
3. 3rd Normal Form
4. BCNF

There are other normal forms, such as 4th and 5th normal
forms. They are rarely utilized in system design and are not
considered further here.

To be in a particular form requires that the data meets the
criteria to also be in all normal forms before that form.
Thus to be in 2nd normal form the data must meet the
criteria for both 2nd normal form and 1st normal form. The
higher the form the more redundancy has been eliminated.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to call a stored function with parameters?

564


What is a sub query? Describe its types?

546


Explain how are indexes update?

623


How to end the current transaction in oracle?

560


What is data file?

619






How do I use unicode codesets with the weblogic jdriver for oracle driver?

552


What privilege is needed for a user to create indexes in oracle?

578


What is sequence?

624


How to convert characters to times in oracle?

596


Is there a function to split a string in plsql?

570


What are temporal data types in oracle?

598


What is Redo Log Buffer in Oracle?

634


What is Segment Advisor in Oracle?

669


What is memory advisor in Oracle?

636


What is PL/SQL ?

1115