博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ORA-00600: internal error code, arguments: [kcratr_nab_less_than_odr]
阅读量:7250 次
发布时间:2019-06-29

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

 

  今天在启动数据库的时候报了下面的错误:
 
 
  1. $ sqlplus / as sysdba 
  2.  
  3. SQL*Plus: Release 11.2.0.1.0 Production on Sun Sep 2 20:08:38 2012 
  4.  
  5. Copyright (c) 1982, 2009, Oracle.  All rights reserved. 
  6.  
  7. Connected to an idle instance. 
  8.  
  9. SQL> startup 
  10. ORACLE instance started. 
  11.  
  12. Total System Global Area  417546240 bytes 
  13. Fixed Size                  2211608 bytes 
  14. Variable Size             310378728 bytes 
  15. Database Buffers          100663296 bytes 
  16. Redo Buffers                4292608 bytes 
  17. Database mounted. 
  18. ORA-00600: internal error code, arguments: [kcratr_nab_less_than_odr], [1], 
  19. [11], [15032], [15057], [], [], [], [], [], [], [] 

从来没有见到过,metalink一下,还真有2遍文章。

 

 
  1. SQL> recover database using backup controlfile until cancel; 
  2. ORA-00279: change 930317 generated at 09/01/2012 00:59:36 needed for thread 1 
  3. ORA-00289: suggestion : /u01/app/oracle/arch/htzdg/1_11_792806317.dbf 
  4. ORA-00280: change 930317 for thread 1 is in sequence #11 
  5.  
  6.  
  7. Specify log: {<RET>=suggested | filename | AUTO | CANCEL} 
  8. auto 
  9. ORA-00308: cannot open archived log 
  10. '/u01/app/oracle/arch/htzdg/1_11_792806317.dbf' 
  11. ORA-27037: unable to obtain file status 
  12. Solaris-AMD64 Error: 2: No such file or directory 
  13. Additional information: 3 
  14.  
  15.  
  16. ORA-00308: cannot open archived log 
  17. '/u01/app/oracle/arch/htzdg/1_11_792806317.dbf' 
  18. ORA-27037: unable to obtain file status 
  19. Solaris-AMD64 Error: 2: No such file or directory 
  20. Additional information: 3 
  21.  
  22.  
  23. ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below 
  24. ORA-01194: file 1 needs more recovery to be consistent 
  25. ORA-01110: data file 1: '/u01/app/oracle/oradata/htzdg/system01.dbf' 
  26.  
  27.  
  28. SQL> recover database until cancel using backup controlfile; 
  29. ORA-00279: change 930317 generated at 09/01/2012 00:59:36 needed for thread 1 
  30. ORA-00289: suggestion : /u01/app/oracle/arch/htzdg/1_11_792806317.dbf 
  31. ORA-00280: change 930317 for thread 1 is in sequence #11 
  32.  
  33.  
  34. Specify log: {<RET>=suggested | filename | AUTO | CANCEL} 
  35. /u01/app/oracle/oradata/htzdg/redo02.log 
  36. Log applied. 
  37. Media recovery complete. 
  38. SQL> alter database open
  39. alter database open 
  40. ERROR at line 1: 
  41. ORA-01589: must use RESETLOGS or NORESETLOGS option for database open 
  42.  
  43.  
  44. SQL> alter database open resetlogs; 
  45.  
  46. Database altered. 

 

  本文转自7343696 51CTO博客,原文链接:http://blog.51cto.com/luoping/980247,如需转载请自行联系原作者

你可能感兴趣的文章
优达学城数据分析师纳米学位——P4项目知识点整理及代码分析
查看>>
压缩 KVM 的 qcow2 镜像文件
查看>>
python 读写文件中 w与wt ; r与rt 的区别
查看>>
深究“通过样式表实现固定表头和列”
查看>>
《Office 365开发入门指南》上市说明和读者服务
查看>>
Docker生态会重蹈Hadoop的覆辙吗?
查看>>
WPF换肤之八:创建3D浏览效果
查看>>
JEECG环境搭建(Maven版本)-总结Eclipse
查看>>
HTTP第一篇【简单了解HTTP、与HTTP相关的协议】
查看>>
Python生成随机验证码
查看>>
Python学习笔记(3)——数据类型和变量
查看>>
03、微信小程序之 永不过时的HelloWorld
查看>>
NFS配置不当那些事
查看>>
[译] 如何写出更好的 React 代码?
查看>>
一起撸个朋友圈吧(step3) - ListAdapter篇
查看>>
LeetCode 642 号问题:设计搜索自动补全系统
查看>>
探究Android View 绘制流程,Canvas 的由来
查看>>
JS原生交互
查看>>
[译] JavaScript 工作原理:Web Worker 的内部构造以及 5 种你应当使用它的场景
查看>>
Android使用Path仿支付宝支付成功失败动画
查看>>