Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
venkath
Posting Yak Master
202 Posts |
Posted - 2008-05-07 : 05:04:47
|
How to know the Jobs, DTS packages related a database using a query?Thanks. |
|
harsh_athalye
Master Smack Fu Yak Hacker
5581 Posts |
Posted - 2008-05-07 : 05:19:18
|
Query sysjobs and sysdtspackages tables in MSDB database.Also note that Packages and Jobs are server level objects and does not belong to any specific database.Harsh AthalyeIndia."The IMPOSSIBLE is often UNTRIED" |
 |
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2008-05-07 : 15:13:45
|
You can find query runs in which db in msdb..sysjobsteps, but no easy way to find out that for dts packages. |
 |
|
|
|
|