INTERNEL ERROR 00600 [4194], [47], [41]
ISSUE :
-----------
While startup the database the following error message shows
ORA-00600: internal error code, arguments: [4194], [41], [47], [], [], [], [], [], [], [], [], []
SOLUTION :
-------------------
recover database until cancel;
alter database open resetlogs;
- SQL> Startup nomount
- SQL> Create pfile='/tmp/corrupt.ora' from spfile ;
- SQL> Shutdown immediate;
- SQL> Startup mount pfile='/tmp/corrupt.ora'
- SQL> Show parameter undo
- SQL> Alter database open ;
- SQL> Create rollback segment r01 ;
- SQL> Alter rollback segment r01 online ;
- SQL> Create undo tablespace undotbs_new datafile '<>' size <> M autoextend on;
- Edit your init.ora file and change the parameter "undo_tablespace=UNDOTBS_NEW" so it points to the newly created tablespace. Change undo_tablespace=UNDOTBS_NEW Change undo_management=MANUAL
- SQL> Shutdown immediate;
- SQL> Startup
- SQL> show parameter undo_tablespace
- SQL>select owner, segment_name, tablespace_name, status from dba_rollback_segs orderby 3;
- If the old segments are online, then they must be taken offline:
- SQL>alter rollback segment "_SYSSMU3$" offline;
- SQL>alter rollback segment "_SYSSMU2$" offline;
- SQL>drop tablespace UNDOTBS1 including contents and datafiles;
- ALTER TABLESPACE UNDOTBS_NEW RENAME TO UNDO_TBS;
- Edit your init.ora file do the following changes undo_management='AUTO' undo_tablespace='UNDO_TBS'
- Restart the database
- Now issue solved completely.............
No comments:
Post a Comment