停止空想

老张的空中之家

存档于 ‘数据库’ 分类

Oracle10g flash_recovery_area 与archive_log

作者:admin 发表时间:四月 - 23 - 2009

来源  http://space.itpub.net/12361284/viewspace-166618

Oracle9i开始提供闪回查询,以便能在需要的时候查到过去某个时刻的一致性数据,这是通过Undo实现的。这个功能有很大的限制,就是相关事务的undo不能被覆盖,否则就无力回天了。oracle10g大大的增强了闪回查询的功能,并且提供了将整个数据库回退到过去某个时刻的能力,这是通过引入一种新的flashback log实现的。flashback log有点类似redo log,只不过redo log将数据库往前滚,flashback log则将数据库往后滚。为了保存管理备份恢复相关的文件,oracle10g提供了一个叫做闪回恢复区(Flashback recovery area)的新特性,可以将所有恢复相关的文件,比如flashback log,archive log,backup set等,放到这个区域集中管理。

阅读全文 »

类别:Oracle

dba_tablespaces 的plugged_in列是什么意思?

作者:admin 发表时间:四月 - 20 - 2009

select tablespace_name,plugged_in from dba_tablespaces;

PLUGGED_IN column shows if the tablespace was “plugged in” to this database from another database using the transportable tablespace feature.

类别:Oracle

veritas netbackup 遇到的一个错误

作者:admin 发表时间:四月 - 17 - 2009

参考  http://pradagu.itpub.net/post/216/12681

released channel: t1
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on t1 channel at 12/30/2004 11:21:05
ORA-19506: failed to create sequential file, name=”cf_TJNPM_8_1_546261663″, parms=”"
ORA-27028: skgfqcre: sbtbackup returned error
ORA-19511: Error received from media manager layer, error text:
VxBSAValidateFeatureId: Failed with error:
Server Status:  unexpected message received

阅读全文 »

类别:Oracle