How to get job execution statistics using repository tables.

Posted by Sudheer Sharma 23 February 2009
What do you think of this post?
Awesome  Interesting  Useful 

I have written few quries to fetch the status information of jobs

Fire these below queries against your repository database

—————————————————-

SELECT job_name, MAX (start_time), MAX (end_time)
FROM alvw_flow_stat
WHERE job_name = ‘XXXXX’
GROUP BY job_name, start_time, end_time
ORDER BY start_time DESC

—————————————————-

SELECT service AS job_name, start_time, end_time,
DECODE (status,
‘E’, ‘Error Occured’,
‘S’, ‘Started’,
‘D’, ‘Successfully Completed’,  status
) status
FROM al_history
ORDER BY start_time DESC

—————————————————-

What do you think of this post?
Awesome  Interesting  Useful 

Leave a Reply

*


Fatal error: Call to undefined function is_new_post() in /hermes/web06/b862/moo.godasudheer/wp-content/themes/MagHo/MagHo/page.php on line 20