70-463 · Question #124
You are running a training exercise for Microsoft SQL Server 2012 junior administrators. You are discussing the use of Slowly Changing Dimension Transformation Outputs. One of the output options are…
The correct answer is E. Changing Attributes Updates Output. The Changing Attributes Updates Output in the Slowly Changing Dimension transformation routes rows to update existing records in the destination where a Type 1 (overwrite) change is detected.
Question
You are running a training exercise for Microsoft SQL Server 2012 junior administrators. You are discussing the use of Slowly Changing Dimension Transformation Outputs. One of the output options are used to update the record in the lookup table. Which of the following is the output option?
Options
- AUnchanged Output
- BInferred Member Updates Output
- CHistorical Attributes Inserts Output
- DFixed Attribute Output
- EChanging Attributes Updates Output
How the community answered
(18 responses)- B6% (1)
- E94% (17)
Why each option
The Changing Attributes Updates Output in the Slowly Changing Dimension transformation routes rows to update existing records in the destination where a Type 1 (overwrite) change is detected.
Unchanged Output routes rows where no differences are detected between the source and destination, meaning no update action is taken.
Inferred Member Updates Output routes rows that match an inferred dimension member (a placeholder record), updating those specific placeholder records rather than standard attribute changes.
Historical Attributes Inserts Output handles SCD Type 2 changes, inserting a new row to preserve historical values rather than updating the existing record.
Fixed Attribute Output routes rows where a fixed attribute - one that should never change - has changed, typically sending them to an error path rather than an update.
Changing Attributes Updates Output handles SCD Type 1 changes, where the changing attribute columns in the existing dimension record are updated in-place (overwritten) with the new values from the source, directly modifying the existing lookup table record.
Concept tested: SCD transformation Changing Attributes Updates Output - Type 1 SCD
Source: https://learn.microsoft.com/en-us/sql/integration-services/data-flow/transformations/slowly-changing-dimension-transformation
Topics
Community Discussion
No community discussion yet for this question.