Oracle 错误 ORA-03113: end-of-file on communication channel 处理办法
Oracle启动时 报错信息
1 2 3 4 5 6 7 8 9 10 11 12
SQL> startup ORACLE instance started. Total System Global Area 1252663296bytes Fixed Size 2227944bytes Variable Size 704643352bytes Database Buffers 536870912bytes Redo Buffers 8921088bytes Database mounted. ORA-03113: end-of-file on communication channel Process ID: 8117 Session ID: 191 Serial number: 3
SQL> conn / as sysdba Connected to an idle instance.
SQL> startup mount ORACLE instance started.
2、获取 v$log 中的日志信息
1
SQL> select * from v$log;
3、依次尝试 恢复数据库
1 2 3 4 5 6 7 8 9 10 11 12
SQL> alter database open resetlogs 2;
SQL> alter database open resetlogs;
alter database open resetlogs * ERROR at line 1: ORA-01139: RESETLOGS option only valid after an incomplete database recovery SQL> recover database until time '2022-05-16' Media recovery complete.
4、重置日志并启动数据库
1 2 3
SQL> alter database open resetlogs; Database altered.