755: EXIT;
756:
757: ELSE
758:
759: select (SYSDATE- START_TIME) into lv_process_time from dual;
760:
761: IF lv_process_time > p_timeout/1440.0 THEN Raise EX_PROCESS_TIME_OUT; END IF;
762:
763: DBMS_LOCK.SLEEP( 5);
766:
767: ELSE
768: -- ============= Check the execution time ==============
769:
770: select (SYSDATE- START_TIME) into lv_process_time from dual;
771:
772: IF lv_process_time > p_timeout/1440.0 THEN Raise EX_PROCESS_TIME_OUT; END IF;
773:
774: DBMS_LOCK.SLEEP( 5);