I would like to share the script to find out the scheduled jobs which call SSIS packages in SQL Server.
USE MSDB GO SELECT sj.job_id as JobId, sj.name as JobName, sjs.step_name as StepName, sjs.Command as Command FROM sysjobs sj INNER JOIN sysjobsteps sjs ON(sj.job_id = sjs.job_id) WHERE sjs.subsystem = 'SSIS' GO
The script return job name and the ssis package full path as command like "/FILE "here ssis package full path" /CHECKPOINTING OFF /REPORTING E"
Take a look at this article which gives more detailed information: http://www.mssqltips.com/sqlservertip/2561/querying-sql-server-agent-job-information/
Good