了解Maclean Liu|向Maclean Liu提问 Oracle ALLSTARS 全明星(群内有多位Oracle高级售后support,N位OCM和ACE) QQ群 # QQ群号:23549328 # 已经升级到 2000人群,空位多多。欢迎有一定基础的Oracle骨友加入,现在入群需要经过Maclean的技术面试,欢迎面试,请加QQ号:47079569 为好友参加面试 2群基础群 适合刚入门的同学,会共享最佳入门实践和资料 QQ群 # QQ群号:171092051 # 已经升级到 500人的超级群,空位多多,无需面试

Overcome ORA-600[4xxx] open database

Recovering a Dropped Table from a Full Database Backup using manual backup and recovery procedures (Doc ID 96197.1) You cannot follow the note exactly as this note is for a valid full backup where you have all logs needed for point in time recovery - the changes you need to make are in the summary steps above. Once you have done the recovery we can attempt a force open (you will have to do the restore/recovery again for sys, sysaux and undo because you have done an open resetlogs on the restored database): YOU ARE ADVISED TO TAKE A FULL COLD OS BACKUP OF THE DATABASE BEFORE PROCEEDING WITH THE FORCE OPEN. To force open a database: 1. if you are using AUM you need to identify ALL rollback segments listed in your dictionary (system dbfs): On unix, you can use the unix strings command to extract the rollback segments: $ strings system01.dbf | grep _SYSSMU | cut -d $ -f 1 | sort -u > listSMU where system01.dbf is the name of the datafile for the SYSTEM tablespace - if you have > 1 system dbf then you need to do this for each file, writing to a different listSMUn file each time. 2. Mount the database and create a pfile (if you dont already have one) SQL>create pfile='init<sid>.ora' from spfile; Edit the pfile - add : _allow_resetlogs_corruption=true undo_management=MANUAL _corrupted_rollback_segments=<list> Where <list> is the list of rollback segment names extracted as above with '$' appended to each name eg _corrupted_rollback_segments=(_SYSSMU1$, _SYSSMU2$........._SYSSMU10$) 3. Remount the instance using the amended pfile and then do the following: SQL>recover database using backup controlfile until cancel; SQL>cancel SQL>alter database open resetlogs; If this works then you can EXPORT the database contents - the database will have to be completely rebuilt and the data re-imported. IF this fails then I need to see the failure (ORA-1555, ORA-600[2662], ORA-600[4194], Ora-600[4000] are common errors raised during force open), along with the alert log extract showing the start up after setting these hidden parameters. Please remember to REMOVE the hidden parameters after you have exported – the should never be used without advice from Oracle Support.

posted on 2013-03-19 00:51  Oracle和MySQL  阅读(137)  评论(0编辑  收藏  举报

导航