nerdexam
Microsoft

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.

Extract and transform data

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)
  • B
    6% (1)
  • E
    94% (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.

AUnchanged Output

Unchanged Output routes rows where no differences are detected between the source and destination, meaning no update action is taken.

BInferred Member Updates Output

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.

CHistorical Attributes Inserts Output

Historical Attributes Inserts Output handles SCD Type 2 changes, inserting a new row to preserve historical values rather than updating the existing record.

DFixed Attribute Output

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.

EChanging Attributes Updates OutputCorrect

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

#Slowly Changing Dimension#Changing Attributes Updates Output#SCD outputs#lookup table

Community Discussion

No community discussion yet for this question.

Full 70-463 Practice