首页 > 数据库技术 > 详细

oracle启动报错:ORA-03113:通信通道的文件结尾

时间:2016-02-25 17:10:33      阅读:386      评论:0      收藏:0      [点我收藏+]

环境:RHEL 5.8

发现数据库startup启动时报

ORA-03113:通信通道的文件结尾

进程 ID :6988

回话 ID:191 序列号:3

[oracle@localhost ~]$ cd $ORACLE_BASE
[oracle@localhost oracle]$ cd diag/rdbms/oracle/oracle/trace/
[oracle@localhost trace]$ ll -rt |tail
[oracle@localhost trace]$ vim oracle_ora_13430.trc

技术分享

[oracle@localhost trace]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on 星期四 2月 25 13:49:56 2016
Copyright (c) 1982, 2011, Oracle.  All rights reserved.
Connected to an idle instance.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 2471931904 bytes
Fixed Size    2230872 bytes
Variable Size 1560282536 bytes
Database Buffers  889192448 bytes
Redo Buffers   20226048 bytes
Database mounted.
SQL> select NAME||‘|‘||SPACE_LIMIT||‘|‘||SPACE_USED||‘|‘||SPACE_RECLAIMABLE||‘|‘||NUMBER_OF_FILES from v$recovery_file_dest;
NAME||‘|‘||SPACE_LIMIT||‘|‘||SPACE_USED||‘|‘||SPACE_RECLAIMABLE||‘|‘||NUMBER_OF_
--------------------------------------------------------------------------------
/u01/app/oracle/fast_recovery_area|6180|0|0|0
SQL>
SQL> alter database clear unarchived logfile group 1; //执行此行时可能出错,如有报错直接把1修改成2或3之后再执行1
SQL> alter database clear unarchived logfile group 2;
SQL> alter database clear unarchived logfile group 1;
Database altered.
SQL> commit;
Commit complete.
SQL> shutdown immediate;
SQL> startup;
ORACLE instance started.
Total System Global Area 2471931904 bytes
Fixed Size    2230872 bytes
Variable Size 1560282536 bytes
Database Buffers  889192448 bytes
Redo Buffers   20226048 bytes
Database mounted.
Database opened.
SQL> select status from v$instance;
STATUS
------------
OPEN
SQL> exit


本文出自 “鹏城-酱油瓶” 博客,请务必保留此出处http://yfshare.blog.51cto.com/8611708/1744992

oracle启动报错:ORA-03113:通信通道的文件结尾

原文:http://yfshare.blog.51cto.com/8611708/1744992

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!