Executing SSIS task from C# application
问题 I can successfully run the SSIS package from my C# App. Is there a way to run a specific task within the SSIS package from .NET (C#) Application? 回答1: We did something like this with an ASP.NET Web Forms application a few years back basically by creating a SQL Agent Job with just one step that executed the SSIS package that had been deployed to the server and then invoking it via the Enterprise Library public bool ExecutePackage(string jobName) { int result = -1; bool success = false; try { /