Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: SSIS Packet and Excel Sheet from dot Net in C#

    Hi,

    It's quite simple, first you have to load the package and then execute it - that's it 🙂

    Example:

    Microsoft.SqlServer.Dts.Runtime.Application app =

    new Microsoft.SqlServer.Dts.Runtime.Application();

    Package package;

    ...

    package = app.LoadPackage(packageFile, null);

    DTSExecResult result...

Viewing post 1 (of 1 total)