Execute SSIS package from aspx page

  • Thread starter Thread starter Luigi
  • Start date Start date
L

Luigi

Hi all,
how can I execute an SSIS (SQL Server 2005) package from an aspx page in a
web application (.NET 2.0)?

Thanks in advance.
 
the easiest is to setup a on demand sqlagent job to run the ssis package. you
start the job with the stored proc sp_start_job.

-- bruce (sqlwork.com)
 
bruce barker said:
the easiest is to setup a on demand sqlagent job to run the ssis package. you
start the job with the stored proc sp_start_job.

-- bruce (sqlwork.com)

Ok, I'll follow this road.
Thank you Bruce.

Luigi
 
Back
Top