Friday, March 26, 2010

Bug Decide Solution

Test Oracle Database (rman Restore) from Oracle RAC (10.2.0.4) + ASM to File System. Then Step:
- create PFILE (modified db_file_name_convert, log_file_name_convert parameters)
- startup nomount
- restore controlfile
- startup mount
- restore database
- recover database
- alter database open resetlogs
After alter database open...
ORA-00600: internal error code, arguments: [kgeade_is_0]

So, change solution by Rename redo log files to File System PATH.
- rename redolog files
- alter database open resetlogs
After alter database rename file ...
ORA-00600: internal error code, arguments: [kgeade_is_0]

Oops!
check Oracle Support - Bug [7207932] ORA-600 [KGEADE_IS_0] WHEN RENAMING A FILE FROM ASM TO FS

I have to patch Database (11g), but not yet. then I have to change solution.
- create control files to trace and modify trace file (script)
- shutdown
- start nomount;
- run script to recreate controlfile
- alter database open resetlogs
- ...
This just show Oracle Bug can decide my solution. How do you think?

No comments: