Is it possible to execute a SSIS package in C# Code ? We can process cube using the namespace "Microsoft.AnalysisServices.AdomdClient". What will be namespace/method to be used for executing a package/task, if possible? This considers Script Task too, in SSIS.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

see Running a Package Programmatically on the Local Computer from msdn

link|improve this answer
Thanks. It worked for me. – Sreejesh Kumar May 26 '10 at 7:01
How do we perform the execution of a particular control flow task in C# ? Is it possible to change the SSIS variable in C# code just like we perform in Script Task, using the instance of Application class ? – Sreejesh Kumar May 26 '10 at 12:28
feedback

The way we do this is we call a stored procedure from code and this stored procedure runs the SSIS package.

DECLARE @Command varchar(500);

SET @Command = 'dtexec /FILE "<SSIS File Name Goes Here>" /Decrypt "<Password Here>"';

EXEC msdb..xp_cmdshell @Command
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.