Pages

Wednesday, July 3, 2019

Killing a running job in Oracle (scheduled job)

Action : 
Find the job:
select * from dba_scheduler_running_jobs;
Kill the job:
exec DBMS_SCHEDULER.STOP_JOB(job_name => ‘owner.job_name’,force => TRUE);


No comments:

Post a Comment