How to drop a schedule in oracle? DBA scripts to drop a schedule in oracle?
Ezana Answered question 17/04/2023
The SQL scripts to drop a schedule in oracle:
BEGIN DBMS_SCHEDULER.DROP_SCHEDULE( schedule_name => 'DAILYREPORTJOB_SCHED', force => TRUE ); END;
Ezana Answered question 17/04/2023