I have a SSIS package that is stored in a SQL Server 2005 DB. I am trying to execute this package from a stored procedure on the same server. Is there a better way than
I recommend using Agent instead:
sp_start_job to start this jobThe downside is that you can't easily pass the parameters from SQL to the package this way.