Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:
A key promise of the database approach is to reduce unnecessary duplication of data while improving consistency. The statement suggests that maximizing redundancy is an advantage, which conflicts with normalization, integrity constraints, and single-source-of-truth design.
Given Data / Assumptions:
Concept / Approach:
The database approach strives for appropriate redundancy—usually minimal—so updates occur in one place and propagate coherently. Excessive duplication increases storage, introduces update anomalies, and raises the likelihood of inconsistent reporting. Where redundancy is added (caching, indexes, aggregates), it is governed, derived, and reconciled with the base truth to avoid inconsistency.
Step-by-Step Solution:
Verification / Alternative check:
Review schema evolution and data quality incidents; duplicates usually correlate with reconciliation issues and reporting mismatches, supporting the minimal redundancy principle.
Why Other Options Are Wrong:
Common Pitfalls:
Equating performance tuning with blanket duplication; ignoring master data management and reference data stewardship.
Final Answer:
Incorrect
Discussion & Comments