Getting Started with Web applications development with servlets and JSP - Part 5: Filters
First Time? You can support us by signing up. It takes only 5 seconds. Click here to sign up. If you already have an account, click here to login.


Upload Image Close it
Select File

Learned something today? Share it, or learn from what others have learned today

SQL Server - Find Scheduled jobs and SSIS packages details in SQL Server

Dec 26 2011 10:43AM by Paresh Prajapati   

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"

Read More..  [4786 clicks]


Paresh Prajapati
7 · 24% · 5511
12
 
5
 
 
0
Incorrect
 
0
Interesting
 
0
Forgotten
 
0
Move



Submit

2  Comments  

  • Good

    commented on Dec 28 2011 6:08AM  .  Report Abuse This post is not formatted correctly
    harishs
    255 · 1% · 117

Your Comment


Sign Up or Login to post a comment.

"SQL Server - Find Scheduled jobs and SSIS packages details in SQL Server" rated 5 out of 5 by 12 readers
SQL Server - Find Scheduled jobs and SSIS packages details in SQL Server , 5.0 out of 5 based on 12 ratings
    Copyright © Beyondrelational.com Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising