DTSExecResult Enumeration
Provides values that describe the result of a task execution.
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
| Member name | Description | |
|---|---|---|
| Canceled | The task was cancelled. (Value = 3) | |
| Completion | The task ran to completion. (Value = 2) | |
| Failure | The task failed. (Value = 1) | |
| Success | The task ran successfully. (Value = 0) |
The run-time engine processes the tasks contained in a package or container by calling their implementation of the Execute method. Tasks implement their core logic and functionality in this method and provide the results of execution by posting messages and returning a value from the DTSExecResult enumeration.
Show: