ORA-03113解决方法

场景:

碰到ORA-00257归档日志写满的解决方法这篇日志当中描述的归档日志写满的情况。

此时我想将数据库切换到非归档模式,参考如何启动或关闭oracle的归档(ARCHIVELOG)模式进行操作,但是在执行shutdown immediate;的时候卡死。

此时我重启了windows oracle 数据库服务器。

再次连接数据库出现解决连接Oracle 11g报ORA-01034和ORA-27101的错误当中的问题。

解决方法:

sysdba身份连接oracle

C:\Documents and Settings\Administrator>sqlplus /nolog
SQL> conn / as sysdba
Connected to an idle instance.
SQL> startup
ORACLE instance started.

接入到mount状态:

startup mount;

将数据库切换到非归档模式:如何启动或关闭oracle的归档(ARCHIVELOG)模式

alter database noarchivelog;
alter database open;

 

posted @ 2014-08-13 15:24  xwdreamer  阅读(11315)  评论(0编辑  收藏  举报