随想lhy

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

故障现象:

     由于电脑强制关机,导致开机后Oracle11g数据库连接5分钟后会断开,要重新启动相关Oracle服务才行。

解决办法:

  首先:打开alert_orcl.log(我的在D:/app/administrator/diag/rdbms/orcl/orcl/trace/),在上面最后查看错误代码,ORA-00600: internal error code, arguments: [4193][][][][][],,,,Instance terminated by PMON等问题。

其次:这是undo表空间的问题,所以,第一步,创建表空间

    SQL> create undo tablespace tbs_undo datafile '/usr/oracle/oradata/ultraeos/undotbs02.dbf' size 300M ;

     Tablespace created.

第二步,重新定位到新的表空间

 SQL> alter system set undo_tablespace='tbs_undo' scope=both;

System altered.

第三步,查看表空间
SQL> show parameter undo

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
undo_management                      string      AUTO
undo_retention                       integer     900
undo_tablespace                      string      tbs_undo

最后,重新启动服务,就好啦。。。。。。

posted on 2015-11-13 16:31  随想lhy  阅读(729)  评论(0编辑  收藏  举报