DTSExecStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains values that indicate the current status of task execution or a container object at the time of the call.
public enum class DTSExecStatus
public enum DTSExecStatus
type DTSExecStatus =
Public Enum DTSExecStatus
- Inheritance
-
DTSExecStatus
Fields
Name | Value | Description |
---|---|---|
DTSES_NONE | 1 | Task is idle (default value). |
DTSES_VALIDATING | 2 | Task is currently validating. |
DTSES_EXECUTING | 3 | Task is currently running. |
DTSES_SUSPENDED | 4 | Task is currently suspended because the runtime has called suspend because of a breakpoint hit. |
DTSES_COMPLETED | 5 | Task has completed executing with a success or failed result. |
DTSES_ABEND | 6 | The task experienced an internal error and terminated execution abnormally. |
Remarks
For more information, see DTSExecStatus.