flashback table 用法

我们都知道,在oracle 10g中有个叫做flash drop的新特性。也就是把删除的表,放进类似回收站的recyclebin中。这样,当你发现drop错表的时候,你可以使用:
flashback table tb_name to before drop ;
来恢复前一次删除的表。当然,oracle有它自己的对recyclebin空间的回收的办法。本来是件好事,可是由于删除的表很多,产生了大量的recyclebin里的表,感觉很不舒服。同事都让我把recyclebin给禁用了,没有办法只有禁用了。方法如下:
%20select"> sys@crmdata> select * from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for Linux: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
show"> sys@crmdata>show parameter recyclebin;
NAME TYPE VALUE
------------------------------------ ----------- -------------------------
recyclebin string ON
alter"> sys@crmdata>alter system set recyclebin=off;
系统已更改。
然后把所有的recyclebin里的内容全给清空:
purge dba_recyclebin;
以后就再也不会看到,那么多乱乱的表出现了。
[@more@]

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/11423276/viewspace-973532/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/11423276/viewspace-973532/

你可能感兴趣的:(flashback table 用法)