ORA-00265错误分析

ORA-00265错误分析
 
SQL> host oerr ora 00265
00265, 00000, "instance recovery required, cannot set ARCHIVELOG mode"
// *Cause:  The database either crashed or was shutdown with the ABORT
//          option. Media recovery cannot be enabled because the online
//          logs may not be sufficient to recover the current datafiles.
// *Action: Open the database and then enter the SHUTDOWN command with the
//          NORMAL or IMMEDIATE option.

此问题是由于非正常关闭数据库后,再执行归档模式命令时出现的,解决的思路是打开数据库后,正常关闭一下即可,见下面处理过程

SQL> alter database archivelog;
alter database archivelog
*
ERROR 位于第 1 行:
ORA-00265: 要求例程恢复,无法设置 ARCHIVELOG 模式

解决办法:

SQL> shutdown immediate
ORA-01109: 数据库未打开


已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup restrict   --以限制模式打开

ORACLE 例程已经启动。

Total System Global Area  135338868 bytes
Fixed Size                   453492 bytes
Variable Size             109051904 bytes
Database Buffers           25165824 bytes
Redo Buffers                 667648 bytes
数据库装载完毕。
数据库已经打开。
SQL> shutdown  --关键步骤,需要正常关闭一下数据库
数据库已经关闭。
已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup mount
ORACLE 例程已经启动。

Total System Global Area  135338868 bytes
Fixed Size                   453492 bytes
Variable Size             109051904 bytes
Database Buffers           25165824 bytes
Redo Buffers                 667648 bytes
数据库装载完毕。
SQL> alter database archivelog;

数据库已更改。
 

SQL> alter database open;

本文出自 “燕子老姚 - 笔记” 博客,谢绝转载!

你可能感兴趣的:(职场,休闲,ORA-00265)