博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ora-01033:oracle initialization or shutdown in progress的一种解决办法
阅读量:6036 次
发布时间:2019-06-20

本文共 1059 字,大约阅读时间需要 3 分钟。

问题描述:用plsql 或者是 命令登录时都登录不了

解决方法:

      问题一开始猜测可能是周五下班关机时直接关掉了电源导致数据库中某些文件丢失,在通过网上找了许多解决方案与结果先描述如下

 在cmd 中

  1. Sqlplus /nolog
  2. Sql> conn sys/orcl as sysdba

 Connected database

  3. Sql>shutdown nomal

ORA-01109:database not open

Database dismounted

ORACLE instance shut down

  4.Sql>startup mount

ORACLE instance started.

Total System Global Area 1636814848 bytes

Fixed Size           2176248 bytes;

Variable Size      1258294024 bytes;

Database Buffers  …

Database mounted.

  5.Sql>alter database open;

Alter database open

*

ERROR at line 1:

  • ora-00600: internal error code

,arguments: [kcratr_nab_less_than_ord],[1],[208],[56906],[56918],[],[],[],[],[],[],[]

到这来发现网上所说的与我的情况就不太一样了,我这里是ora-00600错误

在查找0ra-00600错误时发现时ORACLE 自己的bug ,不过有文章也有数据库redo 文件错误,在查看diag\rdbms\orcl\orcl\trace\alert_orcl.log 中发现报有许多orcl_ora_xx.trc 和orcl_ora_xx.trm 错误分析可能为归档文件错误。

有鉴于此将数据库系统切换为非归档模式下

  6.Sql>alter database noachivelog;

Database altered;

  7.Sql>alter database open;

                         

数据库提示不是原来的错误了。

另外对于 RESTLOGS 和NORESETLOGS 学习

Ok ,数据库启动了

问题解决了。

转载于:https://www.cnblogs.com/xiaozhihome/archive/2013/03/28/2986273.html

你可能感兴趣的文章
zabbix报警媒介------>微信报警
查看>>
使用视图的好处
查看>>
面向开发运维的10款开源工具
查看>>
MVC ---- 增删改成 EF6
查看>>
linux 下 php 安装 pthreads
查看>>
Spring Boot学习笔记
查看>>
python3存入redis是bytes
查看>>
laravel 集合接口
查看>>
C/C++二进制读写png文件
查看>>
记一次SQLServer的分页优化兼谈谈使用Row_Number()分页存在的问题
查看>>
thymleaf 常用th 标签
查看>>
hql 语法详解
查看>>
【Math】矩阵求导
查看>>
四层、七层负载均衡的区别
查看>>
51NOD 1821 最优集合 [并查集]
查看>>
ListView 添加 HeaderView常见错误
查看>>
C#软件license管理(简单软件注册机制)
查看>>
python3的print函数
查看>>
django from表单验证
查看>>
PS 不能使用移动工具 因为目标图层被隐藏怎么办
查看>>