DTSExecResult Numaralandırması
Görev yürütme sonucunu açıklayan değerleri sağlar.
Ad Alanı: Microsoft.SqlServer.Dts.Runtime
Derleme: Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS içinde.dll)
Sözdizimi
'Bildirim
Public Enumeration DTSExecResult
'Kullanım
Dim instance As DTSExecResult
public enum DTSExecResult
public enum class DTSExecResult
type DTSExecResult
public enum DTSExecResult
Üyeler
Üye adı | Açıklama | |
---|---|---|
Failure | Görev başarısız oldu.(Değer = 1) | |
Success | Görev başarıyla çalıştırıldı.(Değer = 0) | |
Completion | Görev için tamamlanma kaldı.(Değer = 2) | |
Canceled | Görev iptal edildi.(Değer = 3) |
Açıklamalar
Run -saat motoru bunların uygulanmasının çağırarak bir paket veya kapsayıcı içinde yer alan görevleri işler Execute yöntem.Görevler bu yöntem, kendi Çekirdek mantığı ve işlevselliğini uygulamak ve sağlar sonuçlar ileti postalama ve arasında bir değer döndüren yürütme DTSExecResult numaralandırma.
Örnekler
Aşağıdaki kod örneği kullanmanın tek yolu gösterir DTSExecResult Numaralandırma paket.Package Sınıfı için bir dönüş değeri olarak bu numaralandırma kullanır Execute yöntem belirleme başarı veya başarısızlık durumu paket.
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
Örnek Çıktı:
Görev başarıyla çalıştırdıysanız