摘要: Oracle开发库批量同步生产环境Oracle数据 select 'truncate table '||table_name||';' from user_tables where table_name like 'OMS%';select 'insert into '||table_n... 阅读全文
posted @ 2015-01-29 17:07 Lucker1900 阅读(176) 评论(0) 推荐(0)
摘要: 系统每晚上会跑很多JOB,JOB是否跑成功不得而知,可以通过如下SQL查看失败的JOB select * from user_jobs where failures 0; 考虑扩展的话,可以做个定时任务,将如上语句放入,每天检测JOB运行情况。 1.成功 发送成功通知邮件有的人认为发送成... 阅读全文
posted @ 2015-01-29 16:04 Lucker1900 阅读(2102) 评论(0) 推荐(0)