We can see Running Job in Oracle Database using below code block.
1 2 3 4 5 6 7 8 9 |
SELECT JOB_NAME, comments, job_Action, last_start_date, last_run_duration, state FROM dba_scheduler_jobs WHERE state = 'RUNNING' ORDER BY last_start_date DESC; |