What is normalization and types of normalization?

Answer Posted / j geor

Database normalization is a technique for designing
relational database tables to minimize duplication of
information and, in so doing, to safeguard the database
against certain types of logical or structural problems,
namely data anomalies.
1NF Eliminate Repeating Groups - Make a separate table for
each set of related attributes, and give each table a
primary key.
2NF Eliminate Redundant Data - If an attribute depends on
only part of a multi-valued key, remove it to a separate table.
3NF Eliminate Columns Not Dependent On Key - If attributes
do not contribute to a description of the key, remove them
to a separate table.
BCNF Boyce-Codd Normal Form - If there are non-trivial
dependencies between candidate key attributes, separate them
out into distinct tables.
4NF Isolate Independent Multiple Relationships - No table
may contain two or more 1:n or n:m relationships that are
not directly related.
5NF Isolate Semantically Related Multiple Relationships -
There may be practical constrains on information that
justify separating logically related many-to-many relationships.
ONF Optimal Normal Form - a model limited to only simple
(elemental) facts, as expressed in Object Role Model notation.
DKNF Domain-Key Normal Form - a model free from all
modification anomalies.

Is This Answer Correct ?    165 Yes 29 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you select everything, but 1 or 2 fields, without writer's cramp?

495


What are its different types of dbms?

536


List the ways to get the count of records in a table?

503


What is pivot query?

591


Can you load data into multiple tables at once? : aql loader

600






What will you get by the cursor attribute sql%rowcount?

547


How do you change a value in sql?

550


how to dump a table to a file with 'mysqldump'? : Sql dba

545


What is the difference between rename and alias?

705


How do I install microsoft sql?

526


Show code of a cursor for loop.

580


Which data type is a composite type?

525


What does varchar include?

517


What is primary and foreign key?

589


What is dialect in sql?

520