Difficulty: Easy
Correct Answer: Valid — workload statistics are critical to physical design
Explanation:
Introduction / Context:
Physical design translates logical schemas into storage structures. To choose indexes, partitioning, compression, and caching, designers must understand data volumes and access frequencies.
Given Data / Assumptions:
Concept / Approach:
Without workload stats, physical design becomes guesswork. Statistics guide decisions that minimize I/O and latency while controlling storage costs.
Step-by-Step Solution:
Collect cardinalities, row counts, growth rates.Profile query patterns (filters, joins, groupings).Choose indexes/partitions aligned with the most frequent and costly operations.Validate choices with explain plans and performance tests.
Verification / Alternative check:
Index/advisor tools in major DBMSs rely on workload captures, reinforcing their criticality.
Why Other Options Are Wrong:
Limiting importance to logical modeling or OLTP only is incorrect; both OLTP and analytics rely on these stats. Optimizers use stats, but designers must use them too.
Common Pitfalls:
Designing once and never revisiting as volumes and patterns evolve; ignoring seasonality and growth.
Final Answer:
Valid — workload statistics are critical to physical design
Discussion & Comments