Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This event is raised by a task or container when its execution status changes.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Overridable Sub OnExecutionStatusChanged ( _
exec As Executable, _
newStatus As DTSExecStatus, _
ByRef fireAgain As Boolean _
)
'Usage
Dim instance As DefaultEvents
Dim exec As Executable
Dim newStatus As DTSExecStatus
Dim fireAgain As Boolean
instance.OnExecutionStatusChanged(exec, _
newStatus, fireAgain)
public virtual void OnExecutionStatusChanged(
Executable exec,
DTSExecStatus newStatus,
ref bool fireAgain
)
public:
virtual void OnExecutionStatusChanged(
Executable^ exec,
DTSExecStatus newStatus,
bool% fireAgain
)
abstract OnExecutionStatusChanged :
exec:Executable *
newStatus:DTSExecStatus *
fireAgain:bool byref -> unit
override OnExecutionStatusChanged :
exec:Executable *
newStatus:DTSExecStatus *
fireAgain:bool byref -> unit
public function OnExecutionStatusChanged(
exec : Executable,
newStatus : DTSExecStatus,
fireAgain : boolean
)
Parameters
- exec
Type: Microsoft.SqlServer.Dts.Runtime.Executable
The task raising the event.
- newStatus
Type: Microsoft.SqlServer.Dts.Runtime.DTSExecStatus
The current status of the executable.
- fireAgain
Type: System.Boolean%
A Boolean that indicates whether this should continue firing or stop firing. A value of true indicates that it should continue firing.
Implements
IDTSEvents.OnExecutionStatusChanged(Executable, DTSExecStatus, Boolean%)
Remarks
The following table shows the values that newStatus will contain:
newStatus |
Description |
---|---|
Task experienced an internal error and terminated execution abnormally. |
|
Task has completed executing with a success or failed result. |
|
Task is currently running. |
|
Task is idle (default value). |
|
Task is currently suspended because of a breakpoint hit. |
|
Task is currently validating. |