Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1062247
  • 博文数量: 239
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 3618
  • 用 户 组: 普通用户
  • 注册时间: 2012-11-12 13:17
文章分类

全部博文(239)

文章存档

2021年(1)

2016年(1)

2015年(30)

2014年(91)

2013年(116)

发布时间:2014-01-30 20:16:21

闪回表闪回hr.employees表到10分钟之前SQL> flashback table hr.employees to timestamp (systimestamp - interval '10' minute);Flashback complete.将hr.employees闪回到SCN为1080381的时候SQL> alter table hr.departments enable row movement;Table altered.将hr.employees和hr.departments两张表到SCN为108.........【阅读全文】

阅读(1719) | 评论(0) | 转发(0)

发布时间:2014-01-30 20:04:03

闪回表时候报错:SQL> flashback table hr.employees to timestamp (systimestamp - interval '10' minute);flashback table hr.employees to timestamp (systimestamp - interval '10' minute)                   *ERROR at line 1:ORA-08189: cannot flashback t.........【阅读全文】

阅读(1296) | 评论(0) | 转发(0)

发布时间:2014-01-30 18:24:12

闪回数据归档在USERS表空间中创建一个能够将"旧"数据保存1年的数据归档,取名"FDA1",操作者必须拥有"flashback_archive administer"系统权限SQL> create flashback archive fda1 tablespace users retention 1 year;Flashback archive created.SQL> create flashback archive default fda_dedault tablespace use.........【阅读全文】

阅读(957) | 评论(0) | 转发(0)

发布时间:2014-01-30 16:50:45

闪回版本查询SQL> select salary from hr.employees where employee_id = 200;    SALARY----------      4400SQL> update hr.employees set salary = 11111 where employee_id = 200;1 row updated.SQL> commit;Commit complete.SQL> update hr.employees set salary = 22222.........【阅读全文】

阅读(668) | 评论(0) | 转发(0)

发布时间:2014-01-30 15:37:33

1.闪回时间点查询1.查询hr.employess在2014年1月30号下午1点40分37秒所有的行SQL> select * from hr.employees as of timestamp to_timestamp('2014-01-30 13:40:37','YYYY-MM-DD HH24:MI:SS');2.查询100号员工在2014年1月30号下午1点40分37年时候的薪水SQL> select salary from hr.employees as of timestamp to_ti.........【阅读全文】

阅读(598) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册