RMAN-00571: ===========================================================
RMAN
-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN
-00571: ===========================================================
RMAN
-03002: failure of recover command at 04/06/2017 16:43:57
RMAN
-06136: ORACLE error from auxiliary database: ORA-01097: cannot shutdown while in a transaction - commit or rollback first
RMAN
-06962: Error received during export of metadata
RMAN
-06960: EXPDP> ORA-39065: unexpected master process exception in MAINORA-04031: unable to allocate 32 bytes of shared memory ("shared pool","select obj# from oid$ where ...","SQLA","tmp")
RMAN
-06960: EXPDP> ORA-39097: Data Pump job encountered unexpected error -4031
根据错误信息中“EXPDP> ORA-39065: unexpected master process exception in MAINORA-04031: unable to allocate 32 bytes of shared memory” 出现辅助实例内存不够。
3.2第二次恢复
本次恢复结果是成功的;与上次不同的是;本次添加了辅助实例的参数文件。操作如下;
set auxiliary instance parameter file to '/u01/auxiliary/initaux.ora'
sql
'alter session set NLS_DATE_FORMAT="YYYY-MM-DD HH24:MI:SS"';
sql
'alter session set NLS_LANGUAGE=American';
recover tablespace LOTTU until time
='2017-04-07 11:14:22' auxiliary destination '/u01/auxiliary';
}