DBA Data[Home] [Help]

APPS.JTM_CONC_PROG_RUN_STATUS_PUB dependencies on JTM_CONC_RUN_STATUS_LOG

Line 28: delete from JTM_CONC_RUN_STATUS_LOG

24:
25: P_Message := 'The log data older than ' ||
26: l_history_level || ' days are deleted';
27:
28: delete from JTM_CONC_RUN_STATUS_LOG
29: /*where (sysdate - END_TIME) > l_history_level;*/
30: where END_TIME < sysdate - l_history_level;
31: commit;
32: EXCEPTION