验证undo切换后,还能不能查处以前的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了验证undo切换后,还能不能查处以前的数据相关的知识,希望对你有一定的参考价值。

实验步骤整理:
conn scott/tiger
drop table t;
create table t as select * from dept;
查看有几个undo表空间
select tablespace_name,contents,extent_management from dba_tablespaces;
set time on
show parameter undo确认当前使用的undo表空间,删掉不用的undo表空间,防止混乱
conn scott/tiger
delete from t;
commit;
alter system checkpoint;
alter system flush buffer_cache;
select * from t as of timestamp to_timestamp(‘2016-12-08 17:04:05‘,‘yyyy-mm-dd hh24:mi:ss‘);此时可以查到数据
#select tablespace_name,block_size,status,contents,segment_space_management from dba_tablespaces;
alter system checkpoint;
alter system flush buffer_cache;
create undo tablespace undotbs datafile ‘/u01/app/oracle/oradata/ORA11GR2/undotbs.dbf‘ size 10m reuse;建立新的undo表空间
alter system set undo_tablespace=‘UNDOTBS2‘;
#select tablespace_name,block_size,status,contents,segment_space_management from dba_tablespaces;
 alter tablespace undotbs1 offline;
  drop tablespace undotbs1 including contents and datafiles;
show parameter undo
conn scott/tiger
select * from t as of timestamp to_timestamp(‘2016-12-08 17:04:05‘,‘yyyy-mm-dd hh24:mi:ss‘);



经验证如果我不删除undotbs1,那么发现切换前的数据仍然能查到,不解

以上是关于验证undo切换后,还能不能查处以前的数据的主要内容,如果未能解决你的问题,请参考以下文章

淘宝帐号说验证码发送太频繁多长时间还能发送?

如何使用 tf.MonitoredTrainingSession 在训练和验证数据集之间切换?

数据库sqlserver!!!!

重装了系统,怎样恢复以前的帐套和数据,

结对编程-个人项目互评

对404同学的代码分析