oracle 闪回操作--区别于快照
Posted 奇异宝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 闪回操作--区别于快照相关的知识,希望对你有一定的参考价值。
update CMS.CI_MONITOR t set t.eyes_type = ‘fl1‘;
commit; --挖坑
------------------
create table tmp_ci_monitor as
select * from cms.ci_monitor as of timestamp sysdate-15/60/24;
select a.eyes_type,COUNT(1) from tmp_ci_monitor a
GROUP BY a.eyes_type;-- where a.eyes_type = ‘‘
select a.eyes_type,COUNT(1) from cms.ci_monitor a
GROUP BY a.eyes_type;-- where a.eyes_type = ‘‘
update cms.ci_monitor t set t.eyes_type = (select t1.eyes_type from tmp_ci_monitor t1 where t.monitor_id=t1.monitor_id);
commit;
以上是关于oracle 闪回操作--区别于快照的主要内容,如果未能解决你的问题,请参考以下文章