ora-1122, ora-1110, ora-1207 while open the database after crash
ora-1122, ora-1110, ora-1207 while open the database after crash
[日期:2014-01-12]来源:linux社区 作者:carefree[字体:]
symptoms:
ora-1122 :database file %s failed verification check
ora-1110 : datafile :
ora-1207: ora 1207 file is more recent than control file
cause:
the information in this file is inconsistent with information from the control file.
the datafile header checkpoint count is beyond the controlfile checkpoint count.
solution:
1.mount the database
sql> startup mount
2. save the information from the control file:
sql> alter database backup controlfile to trace as '/u01/app/oracle/controlfile.txt';
3. create a control file creation script from the tracefile generated in user_dump_dest.
use the noresetlogs option
4. shutdown the database and start it in nomount mode
sql> shutdown abort
sql> startup nomount
5. create the control file
use the script generated by the 'backup controlfile to trace' command above.
6.recover the database
sql> recover database;
7. open the database
sql> alter database open;
推荐阅读:
ora-01172、ora-01151错误处理
ora-00600 [2662]错误解决
ora-01078 和 lrm-00109 报错解决方法
ora-00471 处理方法笔记
ora-00314,redolog 损坏,或丢失处理方法
ora-00257 归档日志过大导致无法存储的解决办法
0
oracle 10g打补丁(p5490848_10202_linux)
授权scott用户可以开启执行
,