Heim  >  Artikel  >  Datenbank  >  VS2005运行ssis包(vs2008,sql2008)

VS2005运行ssis包(vs2008,sql2008)

WBOY
WBOYOriginal
2016-06-07 15:09:411114Durchsuche

首先, 引用 10.0.0 .0 版本 dll ,如下: add assembly="Microsoft.SqlServer.Dts.Design, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/ add assembly="Microsoft.SqlServer.DTSPipelineWrap, Version=10.0.0.0, Culture=neutral

首先,引用10.0.0.0版本dll,如下:


 

using Microsoft.SqlServer.Dts.Runtime.Wrapper;

 

代码如下:

public int ExecuteSSASDts()
    {
        string filepath = urlconvertorlocal("Package.dtsx");
        if (!System.IO.File.Exists(filepath))
        {
            return 2;
        }
        // Call SSIS package from SQL Server.
        Application application = new ApplicationClass();       
        IDTSPackage100 package = application.LoadPackage(filepath,false,null);

        DTSExecResult result = package.Execute();
        if (result.Equals(DTSExecResult.DTSER_SUCCESS))
        {
            return 1;
        }
        else
        {
            return 0;
        }
    }
//相对路径转换成服务器本地物理路径
private string urlconvertorlocal(string imagesurl1)
    {
        string tmpRootDir = Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString());//获取程序根目录
        string imagesurl2 = tmpRootDir + "//Dashboard//" + imagesurl1.Replace(@"/", @"/"); //转换成绝对路径
         return imagesurl2;
     }


这个问题困扰了我好久,现发出来与大家共享,希望能给一些想我一样的菜鸟一些帮助

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn