简体   繁体   中英

What will be the SSIS Package Path?

I have Created a SSIS package and run it it worked fine then i deploy the project it is showing me the package in SSISDB

在此处输入图片说明

There I execute the package it works fine then i try to execute it through asp.net page using this code

    Application app = new Application();
    string path = @" I don't Know the package path";
        Package package = null;
        try
        {
             package = app.LoadPackage(path, null);
             package.Execute();
        }
        catch (Exception)
        {

            throw;
        }

kindly guide me how do i get the package path

该软件包生活在一个数据库中,可以通过调用存储过程来执行它们运行它们,有一个很好的演练在这里

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM