启动归档时提示:ORA-00265: instance recovery required, cannot set ARCHIVELOG mode

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动归档时提示:ORA-00265: instance recovery required, cannot set ARCHIVELOG mode相关的知识,希望对你有一定的参考价值。

故障现象:

     将数据库修改为归档模式时,有如下的提示:

SQL> alter database archivelog;

alter database archivelog

*

ERROR at line 1:

ORA-00265: instance recovery required, cannot set ARCHIVELOG mode


原因分析:

将数据库关闭使用了, shutdown abort或者startup force mount等非一致性关闭,导致数据库

数据文件,控制文件,日志文件三者不同步,下次启动数据库时需要进行实例恢复。只有实例恢复后,数据库一致了,才能更改归档模式。

解决办法:

将数据库启动到OPEN状态后,正常(一致性)关闭,然后再启动到MOUNT阶段,修改归档模式。

SQL> alter database open;

 

Database altered.

 

SQL> shutdown immediate;

Database closed.

Database dismounted.

ORACLE instance shut down.

SQL> startup mount;

ORACLE instance started.

 

Total System Global Area  623546368 bytes

Fixed Size                  1338308 bytes

Variable Size             436208700 bytes

Database Buffers          180355072 bytes

Redo Buffers                5644288 bytes

Database mounted.

 

SQL> alter database archivelog;

 

Database altered.

 

SQL> alter database open;

 

Database altered.

总结:

只有在数据库一致的情况下,才能归档。

http://blog.itpub.net/25851087/viewspace-764035/

以上是关于启动归档时提示:ORA-00265: instance recovery required, cannot set ARCHIVELOG mode的主要内容,如果未能解决你的问题,请参考以下文章

小错误ORA-00265: instance recovery required, cannot set ARCHIVELOG mode

『ORACLE』修改归档时报错:instance recovery required, cannot set ARCHIVELOG mode

oracle数据库连接时提示ora-00257错误,提示数据库归档日志归档失败

Oracle 10.2.0.5 非归档current redolog损坏处理一例

linux oracle归档日志文件路径修改

This version of android studio is incompatible with the gradle version used.Try disabling the instan