Technical Article

Find Job Names that Contain SSIS Packages and their Location

,

This will give you a list of jobs that contain SSIS Packages should you have a project in which you may need to review changes to Packages.

Use msdb;
SELECT sysjobs.name AS 'JobName', 
sysjobsteps.step_id AS 'Step#', 
sysjobsteps.command AS 'SSISLocation'
FROM sysjobs INNER JOIN
sysjobsteps ON sysjobs.job_id = sysjobsteps.job_id
where subsystem='ssis'
order by 1

Rate

4.56 (9)

You rated this post out of 5. Change rating

Share

Share

Rate

4.56 (9)

You rated this post out of 5. Change rating