DTSExecStatus Enumerazione
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Contiene valori che indicano lo stato corrente di esecuzione dell'attività o di un oggetto contenitore al momento della chiamata.
public enum class DTSExecStatus
public enum DTSExecStatus
type DTSExecStatus =
Public Enum DTSExecStatus
- Ereditarietà
-
DTSExecStatus
Campi
Abend | 6 | L'attività ha rilevato un errore interno e ha terminato l'esecuzione in modo anomalo. |
Completed | 5 | L'attività ha completato l'esecuzione con un esito positivo o negativo. |
Executing | 3 | L'attività è in esecuzione. |
None | 1 | L'attività è inattiva (valore predefinito). |
Suspended | 4 | L'attività è sospesa perché il runtime ne ha chiamato la sospensione a causa del rilevamento di un punto di interruzione. |
Validating | 2 | L'attività è in fase di convalida. |
Esempio
Nell'esempio di codice seguente viene illustrato un modo per usare l'enumerazione DTSExecStatus in un pacchetto. Il metodo viene chiamato per determinare lo stato corrente del pacchetto al momento della chiamata.
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