DTSExecResult 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
タスク実行の結果を表す値を提供します。
public enum class DTSExecResult
public enum DTSExecResult
type DTSExecResult =
Public Enum DTSExecResult
- 継承
-
DTSExecResult
フィールド
| 名前 | 値 | 説明 |
|---|---|---|
| Success | 0 | この作業は成功裏に完了しました。 (値=0) |
| Failure | 1 | タスクは失敗しました。 (値=1) |
| Completion | 2 | 作業は完了した。 (値=2) |
| Canceled | 3 | その任務は中止されました。 (値=3) |
例
以下のコード例は、パッケージ内で DTSExecResult 列挙を利用する一つの方法を示しています。 Packageクラスはこの列挙をExecuteメソッドへの返却値として用いて、パッケージの成功または失敗の状態を判定します。
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
using Microsoft.SqlServer.Dts.Tasks.ScriptTask;
namespace Package_API
{
class Program
{
static void Main(string[] args)
{
Package p = new Package();
p.InteractiveMode = true;
p.OfflineMode = true;
// Add a Script Task to the package.
TaskHost taskH = (TaskHost)p.Executables.Add("STOCK:ScriptTask");
// Run the package.
p.Execute();
// Review the results of the run.
if (taskH.ExecutionResult == DTSExecResult.Failure || taskH.ExecutionStatus == DTSExecStatus.Abend)
Console.WriteLine("Task failed or abended");
else
Console.WriteLine("Task ran successfully");
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Imports Microsoft.SqlServer.Dts.Tasks.ScriptTask
Namespace Package_API
Class Program
Shared Sub Main(ByVal args() As String)
Dim p As Package = New Package()
p.InteractiveMode = True
p.OfflineMode = True
' Add a Script Task to the package.
Dim taskH As TaskHost = CType(p.Executables.Add("STOCK:ScriptTask"), TaskHost)
' Run the package.
p.Execute()
' Review the results of the run.
If taskH.ExecutionResult = DTSExecResult.Failure Or taskH.ExecutionStatus = DTSExecStatus.Abend Then
Console.WriteLine("Task failed or abended")
Else
Console.WriteLine("Task ran successfully")
End If
End Sub
End Class
End Namespace
出力例:
任務は成功裏に完了しました
注釈
ランタイムエンジンは、 Execute メソッドの実装を呼び出すことでパッケージやコンテナに含まれるタスクを処理します。 タスクはこのメソッドでコアロジックと機能を実装し、メッセージを投稿して DTSExecResult 列挙から値を返すことで実行結果を提供します。