Hi,
I need to schedule the procedure that i wrote to run automatically after certain amount of time. Is anybody knows how i can do this.
Thanks
Earl
VARIABLE jobno NUMBER BEGIN DBMS_JOB.SUBMIT(:jobno, 'your procedure name', SYSDATE, 'SYSDATE + 1'); COMMIT;END;/PRINT jobno
you need to store the jobno.
by using the user_jobs, you can track.
hope this will help you
with regards,
arasu