码迷,mamicode.com
首页 > 数据库 > 详细

oracle 闪回操作--区别于快照

时间:2020-11-19 12:00:09      阅读:14      评论:0      收藏:0      [点我收藏+]

标签:rac   _id   creat   操作   cms   commit   upd   com   sda   

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 闪回操作--区别于快照

标签:rac   _id   creat   操作   cms   commit   upd   com   sda   

原文地址:https://www.cnblogs.com/xyyou/p/13969601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!