Database Normalization Flashcards
Enumeration:
Things to avoid when designing a Database
Repetition of Information
Inability to Represent Certain Information
Loss of Information
Process of applying a series of techniques and rules to a database in order to reduce data redundancy
Normalization
Process of decomposing relations with anomalies to produce smaller, well-structured relations
Normalization
Normalization techniques which involves
splitting a relation into two or more relations
Projection
Series of rules
Normal Form
Enumeration:
Main Goals of Normalization
- Minimize data redundancy, avoid anomalies, conserve storage space
- Simplify the enforcement of referential integrity constraints
- Make it easier to maintain data (insert, update, delete)
- Provide a better design that is an improved
representation of the real world and a stronger basis for future growth
Identify the Normal Form:
Any multivalued Attribute have been removed
First Normal Form (1NF)
Identify the Normal Form:
Any functional dependencies have been removed
Second Normal Form (2NF)
Identify the Normal Form:
Any transitive dependencies have been removed
Third Normal Form (3NF)
Identify the Normal Form:
Any remaining anomalies that result from functional dependencies have been removed
Boyce/Codd Normal Form
Identify the Normal Form:
Any multivalued dependencies have been removed
Fourth Normal Form (4NF)
Identify the Normal Form:
Any remaining anomalies have been removed
Fifth Normal Form (5NF)
Constraints between two attributes or two sets of attributes
Functional Dependencies
The attribute or set of attributes that uniquely determines the value of another attribute
Determinant
The attribute whose value is determined by the another attribute
Dependent