module 6 review questions Flashcards
it should already be in the First Normal form and it should not have Partial Dependency (or they are eliminated).
When is a table in 2NF?
When all of the key attributes are defined and they are single valued. There should be no repeating groups of data within a single row.
When is a table in 1NF?
A table is in ____if 1) it is already in Second Normal Form (2NF), and 2) there are no transitive dependencies for non-prime attributes
When is a table in 3NF?
A table is in ____normal form when it is in ______and there are no transitive dependencies.
3NF; 2NF
How would you describe a condition in which one attribute is dependent on another attribute when neither attribute is part of the primary key?
transitive dependency
A _____________is an indirect relationship between values in the same table that causes a functional dependency.
transitive dependency
What three data anomalies are likely to be the result of data redundancy? How can such anomalies be eliminated?
Update anomalies, addition anomalies, and deletion anomalies.
Why is a table whose primary key consists of a single attribute automatically in 2NF when it is in 1NF?
Because there will be no partial dependencies.