ORA-03113: end-of-file on communication channel 错误的解决办法

ORA-03113: end-of-file on communication channel    错误的解决办法

时间:2018-12-26
本文章向大家介绍ORA-03113: end-of-file on communication channel    错误的解决办法,主要包括ORA-03113: end-of-file on communication channel    错误的解决办法使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

ORA-03113: end-of-file on communication channel    错误的解决办法

startup
ORACLE instance started.

Total System Global Area 1.0066E+10 bytes
Fixed Size           12342064 bytes
Variable Size         2248150224 bytes
Database Buffers     7784628224 bytes
Redo Buffers           21209088 bytes
Database mounted.
ORA-03113: end-of-file on communication channel
Process ID: 12631
Session ID: 977 Serial number: 51747

以上错误是因为,没有一致性关库造成的


--使用隐藏参数忽略一致性验证:
conn / as sysdba
startup mount
alter system set "_allow_resetlogs_corruption"=true scope=spfile;
startup force mount;        --将数据库启动到 mount
alter database open resetlogs;    --使用 resetlogs 打开数据库
--此时再报 ORA-01139 错误
alter database open resetlogs
*
ERROR at line 1:
ORA-01139: RESETLOGS option only valid after an incomplete database recovery

解决办法:
recover database until cancel;
Media recovery complete.

alter database open resetlogs;

Database altered.

SQL> select status from v$instance;

STATUS
------------
OPEN


--取消隐藏参数后,可以正常启动数据库:
alter system reset "_allow_resetlogs_corruption" scope=spfile sid='*';

startup force    --然后重新启动,可以正常启动

 

 

 

http://www.manongjc.com/article/34489.html

 
posted @ 2022-07-12 11:02  RedArmy  阅读(1147)  评论(0编辑  收藏  举报