Breakpoints in SSIS


A breakpoint is responsible for stopping the execution of the package when a specific event occurs in control flow to investigate and troubleshoot the state of the SSIS package.

There are 10 events in the control flow

  • OnPreExecute: This event is raised by Task or Container certainly before it runs. 
  • OnPostExecute: this event raised immediately after the execution of the logic of Task completed. 
  • OnError: This event raised when an error occurs in Task or Container. 
  • OnWarning: This event is raised when Task or Container in a state does not justify an error but show as a warning. 
  • OnInformation: Basically, this is called when Task or Container need to provide information. 
  • OnTaskFailed: this event raised when it Task fails. 
  • OnProgress: This is called and show update when task logic executed. 
  • OnQueryCancel : This called when executing Task has been canceled.
  • OnVariableValueChanged: This event raised by Integration Service runtime when the value of a variable change. The RaiseChangeEvent of the variable must be set true to raise this event.
  • OnCustomEvent: This event raised by tasks to raise custom task-defined events.

BREAKPOINT DEMO

To implement breakpoint, start right click on the Control Flow and click on the EditBreakPoint on the option.
 
After clicking on EditBreakpoint a window open from where you can choose the breakpoint option as per given above description and click on OK now breakpoint is applied on task flow.

Now you notice a red point on the Task where you applied the breakpoint this indicates there is a breakpoint on the Task. Let's run the package now you see what happen when the breakpoint is reached, a yellow title arrow is added to the breakpoint arrow.
 
To get some information, there is some number of things that can use once a breakpoint has been used.
Start with Call Stack Window which provides information where the breakpoint is located.

 


Next is Breakpoint window where all breakpoint is listed there, the blue area which show all listed Breakpoints from where you can disable and enable breakpoints. The second red area is the control panel from here you can remove the breakpoint from the Task.
 

Output window show the progress of the package and breakpoint.
 

Local Window the most crucial Window the breakpoint bring, which contains information on the current status of package execution and the amount of the time in which the package has been executing.

 
It contains all of the package variables which troubleshoot some odd package behavior it is related to variables not being populated as I thought they should. It is the best way to finding out what the package is doing during execution.

Related Posts

What is the Use of isNaN Function in JavaScript? A Comprehensive Explanation for Effective Input Validation

In the world of JavaScript, input validation is a critical aspect of ensuring that user-provided data is processed correctly. One indispensa...