windows 2003,9.2.0.8,掉电后启动数据库出现00600、00607、01092错误,看alert.log是回滚段的问题,查了网上的资料,处理步骤如下:
1.在pfile中加入 _CORRUPTED_ROLLBACK_SEGMENTS=(_SYSSMU1$, _SYSSMU2$, _SYSSMU3$, _SYSSMU4$, _SYSSMU5$, _SYSSMU6$, _SYSSMU7$, _SYSSMU8$, _SYSSMU9$, _SYSSMU10$)
2.startup pfile=.../initxxx.ora
此时数据库应该能够正常open
3.create undo tablespace undotbs2 datafile '..../undotbs2.dbf' size ..M;
alter system set undo_tablespace=undotbs2;
drop tablespace undotbs1 including contents and datafiles;
4.在你的init参数文件里修改*.undo_tablespace='UNDOTBS2' , 并注释掉第一步的隐含参数
5.create spfile from pfile;
6.shutdown and startup
如果正常,赶紧来个exp导出全备
--转自