码迷,mamicode.com
首页 > 其他好文 > 详细

053-373

时间:2017-11-13 16:41:39      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:pac   利用   base   recover   timestamp   acl   时间   回收   which   

Which of the following Oracle features utilize the undo tablespace? (Choose all that apply)
A. Flashback Query
B. Flashback Drop
C. Flashback Table
D. Flashback Database
E. Transaction Processing
F. Recycle Bin

  Flashback Drop utilizes the Recycle Bin,which does not use the undo tablespace;Flashback Database  is a physical recovery method and does not use undo.

Transaction Processing 事务处理会在 undo redo 产生数据。
flashback drop:利用 recyelebin 回收站原理
flashback table TEST10 to before drop [rename to test11];可以重命名
flashback query ,依赖 undo 数据,先查询,在做 insert
insert into test10 select * from test10 as of timestamp to_timestamp(‘2013-09-23
11:52:06‘,‘yyyy-mm-dd hh24:mi:ss‘);
flashback table 依赖 undo
flashback table scott.test10 to scn 1952615
insert into test10 select * from scott.test10 as of scn 1952615;
flashback database DDL 语句,依赖闪回区的闪回日志
flashback database to timestamp to_timestamp(‘2013-09-23 15:09:52‘,‘yyyy-mm-dd hh24:mi:ss‘);时间减一秒。

053-373

标签:pac   利用   base   recover   timestamp   acl   时间   回收   which   

原文地址:http://www.cnblogs.com/Babylon/p/7826329.html

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