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 |
sqlfresher2k7
Aged Yak Warrior
623 Posts |
Posted - 2012-04-06 : 16:25:12
|
Is there any query which should tell which step job is processing instead of looking into the jobactivity monitor. |
|
jezemine
Master Smack Fu Yak Hacker
2886 Posts |
Posted - 2012-04-07 : 16:26:40
|
run this: msdb.dbo.sp_help_joblook at current_execution_step column. elsasoft.org |
 |
|
jezemine
Master Smack Fu Yak Hacker
2886 Posts |
Posted - 2012-04-07 : 16:31:36
|
another trick: turn on profiler and then launch jobactivity monitor. then you can see what it is doing to get the data.guess what? it's calling msdb.dbo.sp_help_job:) elsasoft.org |
 |
|
|
|
|