Package.Execute 메서드

정의

패키지 실행의 성공 또는 실패에 대한 정보를 포함하는 DTSExecResult 열거형을 반환합니다.

public:
 Microsoft::SqlServer::Dts::Runtime::DTSExecResult Execute();
public Microsoft.SqlServer.Dts.Runtime.DTSExecResult Execute ();
override this.Execute : unit -> Microsoft.SqlServer.Dts.Runtime.DTSExecResult
Public Function Execute () As DTSExecResult

반환

DTSExecResult

패키지 실행의 성공 또는 실패에 대한 정보를 포함하는 DTSExecResult 열거형입니다.

예제

다음 코드 예제에서는 패키지를 만들고 스크립트 작업을 추가하기 전에 해당 및 InteractiveMode 속성을 설정합니다OfflineMode. 그런 다음 메서드를 사용하여 패키지를 실행합니다 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(typeof(Microsoft.SqlServer.Dts.Tasks.ScriptTask.ScriptTask).AssemblyQualifiedName);  
            // 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(Type.GetType(Microsoft.SqlServer.Dts.Tasks.ScriptTask.ScriptTask).AssemblyQualifiedName), 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 메서드는 추상 클래스의 태스크 호스트 및 기타 개체에서 Executable 클래스를 통해 DtsContainer 상속되며 런타임 엔진에서 상속 개체를 실행할 수 있습니다. Execute 개별 개체가 상속하는 메서드는 코드에서 일반적으로 사용되지 않으며 패키지에서 태스크 또는 컨테이너를 실행해야 하는 경우 메서드를 호출 Execute 하는 것이 좋습니다. 그러나 Execute 이 메서드는 필요한 고유한 상황을 찾을 경우 개별 개체에서 사용할 수 있습니다.

메서드의 주요 사용은 사용자 지정 작업을 만들 때 상속되고 재정의 Execute 되는 것입니다. Execute 메서드를 재정의하는 방법에 대한 자세한 내용은 사용자 지정 태스크 코딩을 참조하세요.

이 메서드는 Execute 패키지를 실행하기 전에 메서드를 암시적으로 호출 Validate 합니다. 패키지의 모든 작업은 유효성 검사 중에 적절한 설정을 검토하며 패키지의 패키지, 컨테이너 및 기타 구성 요소를 포함하여 패키지의 모든 개체를 검토합니다.

패키지가 실패하는 유효성 검사 단계에서 문제가 발생하지 않으면 패키지 개체는 패키지의 각 작업 및 개체에 대한 메서드를 계속 호출 Execute 합니다.

속성이 .인 transaction 경우 매개 변수에 TransactionOption 전달 null 합니다false. 속성이 TransactionOption true이면 매개 변수를 transaction 전달 null 하여 컨테이너가 트랜잭션을 지원하지만 참여하지 않음을 나타낼 수 있습니다.

적용 대상