I am trying to use dbms_job to run a procedure daily. I can do this in whole hours, but want to run the procedure at 1:55 daily or even 1:30 daily. I am unsure how to specify minutes of the day. I tried the code below, but this was not running and have tried other variations, but have always gotten compilation errors. Can anyone help?
SQL> declare
2 itt_jobnum NUMBER;
3 BEGIN
4 dbms_job.submit(itt_jobnum, 'itt_fixed_file;', SYSDATE,
5 'trunc((sysdate) + 1) + 1355/24');
6 commit;
7 end;
8 /
Using 13/24 will run it at 1. But how can I run this at 1:55? Thanks!
Jami
SQL> declare
2 itt_jobnum NUMBER;
3 BEGIN
4 dbms_job.submit(itt_jobnum, 'itt_fixed_file;', SYSDATE,
5 'trunc((sysdate) + 1) + 1355/24');
6 commit;
7 end;
8 /
Using 13/24 will run it at 1. But how can I run this at 1:55? Thanks!
Jami