[Oracle][OnlineREDO]数据库无法启动时的对应策略:
Posted 健哥的数据花园
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Oracle][OnlineREDO]数据库无法启动时的对应策略:相关的知识,希望对你有一定的参考价值。
[Oracle][OnlineREDO]数据库无法启动时的对应策略:
1. Start with mount.
SQL> conn / as sysdba
SQL> startup mount
2. Check the redo log in which v $ log failed.
SQL> select * from v $ log;
===> If STATUS = ‘INACTIVE‘, perform step 3.
If STATUS = ‘INACTIVE‘, do step 4.
3. Clear the redo log file.
SQL> alter database clear logfile group X;
SQL> alter database open;
4. Execute the recover statement.
SQL> recover database until cancel;
SQL> alter database open resetlogs;
If you can not deal with the above method, the following actions are required.
a) In the archive log mode
Apply the created archive log and recover.
b) In case of no archive log mode
Please restore the acquired cold backup.
以上是关于[Oracle][OnlineREDO]数据库无法启动时的对应策略:的主要内容,如果未能解决你的问题,请参考以下文章