nerdexam
Microsoft

70-463 · Question #247

You are developing a SQL Server Integration Services (SSIS) package that loads data from a source transactional tables in a data warehouse. You discover that one of the data flows loads incorrect data

The correct answer is C. a data viewer. A data viewer attaches to data flow paths between components and displays the actual rows passing through at runtime, making it the precise tool for locating the source of incorrect data.

Configure and deploy SSIS solutions

Question

You are developing a SQL Server Integration Services (SSIS) package that loads data from a source transactional tables in a data warehouse. You discover that one of the data flows loads incorrect data to one of the destination tables. You need to identify the cause of the incorrect data flow. Which tool should you use?

Options

  • ASSIS logging.
  • Ba breakpoint
  • Ca data viewer
  • Dthe locals window.

How the community answered

(57 responses)
  • A
    7% (4)
  • B
    12% (7)
  • C
    77% (44)
  • D
    4% (2)

Why each option

A data viewer attaches to data flow paths between components and displays the actual rows passing through at runtime, making it the precise tool for locating the source of incorrect data.

ASSIS logging.

SSIS logging captures package events, warnings, row counts, and execution metadata but does not record or display the actual data values flowing through the data flow pipeline components.

Ba breakpoint

A breakpoint pauses package or task execution at a defined event boundary for interactive debugging but does not expose the stream of row data flowing between individual data flow transformations.

Ca data viewerCorrect

A data viewer is attached directly to a data flow path connector in the SSIS designer and renders the actual rows of data as they pass between two components at runtime. By placing data viewers at successive points in the pipeline, a developer can compare input versus output data for each transformation and isolate exactly which component introduces the incorrect values. This targeted, row-level visibility makes it the most effective tool for diagnosing an incorrect data flow.

Dthe locals window.

The locals window displays variable values and system property values during a breakpoint-suspended debug session but does not show the actual rows of data flowing through the data flow pipeline.

Concept tested: Using SSIS data viewer to inspect pipeline data flow

Source: https://learn.microsoft.com/en-us/sql/integration-services/troubleshooting/debugging-data-flow

Topics

#data viewer#SSIS debugging#data flow troubleshooting#incorrect data

Community Discussion

No community discussion yet for this question.

Full 70-463 Practice