Physical Design Flashcards
1
Q
Normalisation rules up to 1NF
A
First Normal Form (1NF):
Eliminate duplicate rows.
Identify a primary key for each table.
Remove repeating groups and create separate tables for them.
2
Q
Normalisation rules up to 2NF
A
Second Normal Form (2NF):
Meet the requirements of 1NF.
Ensure that all non-key attributes depend on the entire primary key.
Move partial dependencies to separate tables.
3
Q
Normalisation rules up to 3NF
A
Third Normal Form (3NF):
Meet the requirements of 2NF.
Eliminate transitive dependencies.
Remove attributes that are not directly dependent on the primary key.
4
Q
Boyce-Codd notation
A