I have scheduled an event below that I would now keep from happening. Can anyone tell me how to now stop this event from occuring daily as I had submitted below?
declare
jobnum NUMBER;
BEGIN
dbms_job.submit(jobnum, 'myprocedure;',SYSDATE, 'trunc((sysdate) + 1) + 14/24');
commit;
end;
/
Thanks!
Jami
declare
jobnum NUMBER;
BEGIN
dbms_job.submit(jobnum, 'myprocedure;',SYSDATE, 'trunc((sysdate) + 1) + 14/24');
commit;
end;
/
Thanks!
Jami