Executing a SSIS Package from SharePoint 2010
March 27, 2012 1 Comment
In this post I will talk about how you can create a SharePoint list that will kick off SSIS packages. This interface will allow certain end users to have some access to package execution; it is much cleaner than having a business user log into a database to manually kick off a job.
Creating the SQL table
The package execution history will be stored in a simple table comprising of two columns: PackageName and LastExecuted.
If the user wants to rerun a specific package they will zero out the LastExecuted column. Doing so will kick off a trigger that executes sp_start_job. Below you will find the syntax for the trigger. Read more of this post






