摘要:
普通插入方式:insert into t select * from t2;append插入方式:insert /*+append*/ into t select * from t2;Append+nologing插入方式:insert /*+append*/ into t nologging se... 阅读全文
摘要:
特别提示:oracle是执行完任务,才按照interval去计算下次执行时间!!!为精确每个5分钟执行一个任务,必须自己计算时间。如:trunc_minute(sysdate)+5/1440create or replace function trunc_minute(v_date date) re... 阅读全文