DBMS SCHEDULER MAINTENANCE
Create a job BEGIN DBMS_SCHEDULER.CREATE_JOB ( job_name => 'TEST_JOB', job_type => 'EXECUTABLE', job_action => '/u01/app/abc.sql', repeat_interval => 'FREQ=MINUTELY', enabled => TRUE ); END; / Unlike DBMS_JOB you do not need to commit the job creation for it to be taken into account. As a corollary, if you want to cancel it, you have to remove or disable it. ****** Remove a job EXEC DBMS_SCHEDULER.DROP_JOB('TEST_JOB'); ****** Run a job now To force immediate job execution: EXEC dbms_scheduler.run_job('myjob'); ****** Change job attributes Examples: EXEC DBMS_SCHEDULER.S...