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

How delete all data from table in sql?

566


What are the different types of joins in sql?

579


what are the nonstandard string types? : Sql dba

597


What is rownum?

534


Does varchar need length?

514






Explain the difference in execution of triggers and stored procedures?

561


What is dml statement?

511


What is cursor explain with example?

545


How do you get column names only for a table (sql server)?

659


How can you save or place your msg in a table?

517


What is data control language (dcl)?

595


What is sql deadlock?

558


what are the features and advantages of object-oriented programming? : Sql dba

538


Is foreign key mandatory?

550


what are the different type of normalization? : Sql dba

548