358: EXIT;
359:
360: ELSE
361:
362: select (SYSDATE- START_TIME) into lv_process_time from dual;
363:
364: IF lv_process_time > p_timeout/1440.0 THEN Raise EX_PROCESS_TIME_OUT; END IF;
365:
366: DBMS_LOCK.SLEEP( 5);
369:
370: ELSE
371: -- ============= Check the execution time ==============
372:
373: select (SYSDATE- START_TIME) into lv_process_time from dual;
374:
375: IF lv_process_time > p_timeout/1440.0 THEN Raise EX_PROCESS_TIME_OUT; END IF;
376:
377: DBMS_LOCK.SLEEP( 5);