So first identify the job you are looking for using:
SELECT *
FROM dba_jobs
;
Then use DBMS_IJOB to remove the job. Use the value from the JOB column above as the parameter value.EXEC SYS.DBMS_IJOB.REMOVE(?);
I'm using Oracle 11 but I believe that, although this is undocumented, this has been around for several years now.Removed.
No comments:
Post a Comment