web-dev-qa-db-ja.com

.NETからSSISパッケージを実行する方法は?

私は最終的にパラメータも渡したいSSISパッケージを持っています、これらのパラメータは.NETアプリケーション(VBまたはC#)から来るので、誰かがこれを行う方法を知っているか、より良いまだ有用なヒントのあるWebサイトに興味がありましたそれを行う方法について。

したがって、基本的には、.NETからSSISパッケージを実行して、その中で使用できるSSISパッケージパラメーターを渡します。

たとえば、SSISパッケージはSQL dbへのフラットファイルインポートを使用しますが、ファイルのパスと名前は、.Netアプリケーションから渡されるパラメーターにすることができます。

83
Ken

コードからパッケージに変数を設定する方法は次のとおりです-

using Microsoft.SqlServer.Dts.Runtime;

private void Execute_Package()
    {           
        string pkgLocation = @"c:\test.dtsx";

        Package pkg;
        Application app;
        DTSExecResult pkgResults;
        Variables vars;

        app = new Application();
        pkg = app.LoadPackage(pkgLocation, null);

        vars = pkg.Variables;
        vars["A_Variable"].Value = "Some value";               

        pkgResults = pkg.Execute(null, vars, null, null, null);

        if (pkgResults == DTSExecResult.Success)
            Console.WriteLine("Package ran successfully");
        else
            Console.WriteLine("Package failed");
    }
58
Craig Schwarze

以下は、SQL Server 2012で導入されたSSDBカタログを使用して行う方法です。

using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.SqlClient;

using Microsoft.SqlServer.Management.IntegrationServices;

public List<string> ExecutePackage(string folder, string project, string package)
{
    // Connection to the database server where the packages are located
    SqlConnection ssisConnection = new SqlConnection(@"Data Source=.\SQL2012;Initial Catalog=master;Integrated Security=SSPI;");

    // SSIS server object with connection
    IntegrationServices ssisServer = new IntegrationServices(ssisConnection);

    // The reference to the package which you want to execute
    PackageInfo ssisPackage = ssisServer.Catalogs["SSISDB"].Folders[folder].Projects[project].Packages[package];

    // Add a parameter collection for 'system' parameters (ObjectType = 50), package parameters (ObjectType = 30) and project parameters (ObjectType = 20)
    Collection<PackageInfo.ExecutionValueParameterSet> executionParameter = new Collection<PackageInfo.ExecutionValueParameterSet>();

    // Add execution parameter (value) to override the default asynchronized execution. If you leave this out the package is executed asynchronized
    executionParameter.Add(new PackageInfo.ExecutionValueParameterSet { ObjectType = 50, ParameterName = "SYNCHRONIZED", ParameterValue = 1 });

    // Add execution parameter (value) to override the default logging level (0=None, 1=Basic, 2=Performance, 3=Verbose)
    executionParameter.Add(new PackageInfo.ExecutionValueParameterSet { ObjectType = 50, ParameterName = "LOGGING_LEVEL", ParameterValue = 3 });

    // Add a project parameter (value) to fill a project parameter
    executionParameter.Add(new PackageInfo.ExecutionValueParameterSet { ObjectType = 20, ParameterName = "MyProjectParameter", ParameterValue = "some value" });

    // Add a project package (value) to fill a package parameter
    executionParameter.Add(new PackageInfo.ExecutionValueParameterSet { ObjectType = 30, ParameterName = "MyPackageParameter", ParameterValue = "some value" });

    // Get the identifier of the execution to get the log
    long executionIdentifier = ssisPackage.Execute(false, null, executionParameter);

    // Loop through the log and do something with it like adding to a list
    var messages = new List<string>();
    foreach (OperationMessage message in ssisServer.Catalogs["SSISDB"].Executions[executionIdentifier].Messages)
    {
        messages.Add(message.MessageType + ": " + message.Message);
    }

    return messages;
}

コードは http://social.technet.Microsoft.com/wiki/contents/articles/21978.execute-ssis-2012-package-with-parameters-via-net.aspx?CommentPosted = true#commentmessage

同様の記事が http://domwritescode.com/2014/05/15/project-deployment-model-changes/ にもあります。

21
Paul Hatcher

@Craig Schwarzeの回答に追加するには、

関連するMSDNリンクを次に示します。

プログラムによるローカルパッケージの読み込みと実行:

プログラムによるリモートパッケージの読み込みと実行

実行中のパッケージからイベントをキャプチャする:

using System;
using Microsoft.SqlServer.Dts.Runtime;

namespace RunFromClientAppWithEventsCS
{
  class MyEventListener : DefaultEvents
  {
    public override bool OnError(DtsObject source, int errorCode, string subComponent, 
      string description, string helpFile, int helpContext, string idofInterfaceWithError)
    {
      // Add application-specific diagnostics here.
      Console.WriteLine("Error in {0}/{1} : {2}", source, subComponent, description);
      return false;
    }
  }
  class Program
  {
    static void Main(string[] args)
    {
      string pkgLocation;
      Package pkg;
      Application app;
      DTSExecResult pkgResults;

      MyEventListener eventListener = new MyEventListener();

      pkgLocation =
        @"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services" +
        @"\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx";
      app = new Application();
      pkg = app.LoadPackage(pkgLocation, eventListener);
      pkgResults = pkg.Execute(null, null, eventListener, null, null);

      Console.WriteLine(pkgResults.ToString());
      Console.ReadKey();
    }
  }
}
7
Faiz

したがって、どの言語からでも実際に起動できる別の方法があります。私が思う最善の方法は、.dtsxパッケージを呼び出すバッチファイルを作成するだけです。

次に、任意の言語からバッチファイルを呼び出します。 Windowsプラットフォームのように、どこからでもバッチファイルを実行できます。これはあなたの目的にとって最も一般的なアプローチだと思います。コードの依存関係はありません。

詳細は以下のブログをご覧ください。

https://www.mssqltips.com/sqlservertutorial/218/command-line-tool-to-execute-ssis-packages/

ハッピーコーディング.. :)

ありがとう、アヤン

0