
Explanation:
In data warehousing, Slowly Changing Dimensions (SCDs) are strategies for managing changes to dimension data over time. The question specifically describes a scenario where:
This perfectly matches Type 2 SCD characteristics:
Type 0 (Option A): Retains original values and never changes - does not track any historical changes
Type 1 (Option B): Overwrites old data with new values - loses historical information entirely
Type 3 (Option D): Adds new columns for previous values but only tracks limited history (typically just the previous value) - does not preserve complete history through new rows
Type 2 SCD is the optimal choice when business requirements demand maintaining a complete historical record of dimension attribute changes, which aligns precisely with the scenario described in the question.
Ultimate access to all questions.
No comments yet.
You are designing a dimension table for a data warehouse that will track changes to dimension attributes over time by adding a new row for each change to preserve the full history. Which type of slowly changing dimension (SCD) should you use?
A
Type 0
B
Type 1
C
Type 2
D
Type 3