I am creating scheduler with following statement
BEGIN
SYS.DBMS_SCHEDULER.CREATE_SCHEDULE
(
schedule_name => 'CLEAN_TABLE_EVERYDAY'
,start_date => trunc(SYSDATE)
,repeat_interval => 'FREQ=DAILY; BYHOUR=23;'
,end_date => NULL
,comments => 'Clean table at 11 PM everyday'
);
END;
/
But when I ran following query
SELECT *
FROM dba_scheduler_jobs
where owner = 'DB_USER_NAME';
I saw that repeat_interval
column has a null value.
I have left this job running for almost 3 days and I don't see any result. What is wrong here?