Recall & Review
beginner
What is a data anomaly in databases?
A data anomaly is an inconsistency or error that occurs when inserting, updating, or deleting data in a database due to poor design.
Click to reveal answer
beginner
How does normalization help prevent insertion anomalies?
Normalization organizes data so that new data can be added without requiring unrelated data, preventing incomplete or incorrect entries.
Click to reveal answer
intermediate
What is an update anomaly and how does normalization address it?
An update anomaly happens when changes to data require multiple updates in different places. Normalization stores data in one place, so updates happen only once, avoiding inconsistencies.
Click to reveal answer
intermediate
Explain deletion anomaly and its relation to normalization.
A deletion anomaly occurs when deleting data unintentionally removes other important data. Normalization separates data into related tables, so deleting one piece doesn't remove unrelated data.
Click to reveal answer
beginner
Why does breaking data into smaller tables reduce anomalies?
Breaking data into smaller, related tables reduces redundancy and dependency, which helps keep data consistent and avoids anomalies during data operations.
Click to reveal answer
What type of anomaly occurs when adding new data requires unnecessary extra information?
✗ Incorrect
Insertion anomaly happens when you cannot add data without including unrelated or unnecessary data.
Which anomaly can cause inconsistent data after changing a value in multiple places?
✗ Incorrect
Update anomaly occurs when data changes are not applied everywhere they should be, causing inconsistency.
How does normalization reduce data anomalies?
✗ Incorrect
Normalization organizes data into smaller related tables, reducing redundancy and anomalies.
What problem does a deletion anomaly cause?
✗ Incorrect
Deletion anomaly causes loss of important data when deleting related data unintentionally.
Which of these is NOT a benefit of normalization?
✗ Incorrect
Normalization reduces data duplication, it does not increase it.
Explain in your own words why normalization eliminates data anomalies.
Think about how splitting data into smaller parts helps keep it clean and consistent.
You got /4 concepts.
Describe the three main types of data anomalies and how normalization helps avoid each.
Focus on what happens when you add, change, or delete data.
You got /4 concepts.