Difficulty: Easy
Correct Answer: Incorrect
Explanation:
Introduction / Context:
Data warehouses are maintained via periodic loads. Two broad extraction styles are common: static (full snapshot) and incremental (delta/change data capture). This question checks whether static extracts are the norm for ongoing maintenance.
Given Data / Assumptions:
Concept / Approach:
Static extracts export all rows regardless of change, making them suitable for initial population or rare rebuilds. For routine cycles, incremental extracts move only new or changed rows using last_update timestamps, log-based CDC, or merge patterns. This reduces load times, storage, and contention on source systems.
Step-by-Step Solution:
Verification / Alternative check:
Measure daily ETL runtime. If full snapshots are used for large fact tables, run times spike and windows lengthen. Switching to deltas typically shortens the window and reduces resource use.
Why Other Options Are Wrong:
Common Pitfalls:
Trusting soft deletes without audit trails, or forgetting late-arriving facts and out-of-order updates. Always design idempotent, restartable delta loads with reconciliation checks.
Final Answer:
Incorrect
Discussion & Comments