debugging SSIS packages - debug.writeline

11,271

Solution 1

Use Dts.Events.FireInformation instead.

Solution 2

How to: Debug a Package by Setting Breakpoints on a Task or a Container

Debugging Control Flow

Breakpoints in SQL Server 2005 Integration Services SSIS

Watching variables in SSIS during debug - Stack Overflow

To capture Debug.WriteLine output, download and run the standalone DebugView

Share:
11,271
cometbill
Author by

cometbill

This space left intentionally blank

Updated on June 15, 2022

Comments

  • cometbill
    cometbill almost 2 years

    The debugging experience in SSIS is not what I am expecting.

    I have a script Task that I have added a Imports System.Diagnostics at the header of the class, and in the code I have various debug.writeline ("Attemtpting to move file") type messages.

    But, they are not displaying in the output window.

    Am I missing something?