November 5, 2013 at 9:05 am
Hi All,
I want to write small query, which can show me alll the SSIS jobs activities
Shuan
November 5, 2013 at 12:07 pm
Are you looking for a query that will list all of the scheduled jobs that contain an SSIS step?
SELECT
Job.Name AS Job_Name,
Step.Step_ID AS Step_Number,
Step.Step_Name,
Step.Command AS Step_Command
FROM
MSDB.dbo.SysJobs Job
JOIN
MSDB.dbo.SysJobSteps Step
ON
Job.Job_ID = Step.Job_ID
WHERE
Step.SubSystem = 'SSIS'
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy