DTSExecResult Enumerazione

Definizione

Fornisce valori che descrivono il risultato di un'esecuzione dell'attività.

public enum class DTSExecResult
public enum DTSExecResult
type DTSExecResult = 
Public Enum DTSExecResult
Ereditarietà
DTSExecResult

Campi

Canceled 3

L'attività è stata annullata. (Valore = 3)

Completion 2

L'attività è stata eseguita al completamento. (Valore = 2)

Failure 1

Impossibile eseguire l'attività. (Valore = 1)

Success 0

L'attività è stata eseguita correttamente. (Valore = 0)

Esempio

Nell'esempio di codice seguente viene illustrato un modo per usare l'enumerazione DTSExecResult in un pacchetto. La Package classe usa questa enumerazione come valore restituito al Execute metodo per determinare l'esito positivo o negativo del pacchetto.

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  

Esempio di output

Attività eseguita correttamente

Commenti

Il motore di runtime elabora le attività contenute in un pacchetto o in un contenitore chiamando l'implementazione del Execute metodo . Le attività implementano la logica e la funzionalità di base in questo metodo e forniscono i risultati dell'esecuzione pubblicando messaggi e restituendo un valore dall'enumerazione DTSExecResult .

Si applica a