Recover database using backup controlfile until cancel
*. _ Allow_resetlogs_uption = true
*. _ Allow_error_simulation = true Add two implicit parameters and start again SQL> alter database open resetlogs;
Alter database open resetlogs
*
Row 3 has an error:
ORA-00603: Oracle Server session terminated by fatal error
ORA-00600: Internal error code, arguments: [2662], [0], [1080422], [0],
[1083510], [12583040], [], [], [], [], [], []
ORA-00600: Internal error code, arguments: [2662], [0], [1080421], [0],
[1083510], [12583040], [], [], [], [], [], []
ORA-01092: Oracle instance terminated. Disconnection forced
ORA-00600: Internal error code, arguments: [2662], [0], [1080418], [0],
[1083510], [12583040], [], [], [], [], [], []
Process ID 3648
Session ID: 1 serial number: 5
Alter session set events '10015 trace name adjust_scn level 1 '; SQL> startup
The Oracle routine has been started.
Total system global area 431038464 bytes
Fixed size 1375088 bytes
Variable Size 327156880 bytes
Database buffers 96468992 bytes
Redo buffers 6037504 bytes
The database has been loaded.
ORA-00600: Internal errorCode, Parameter: [4194], [:?
SQL> select name from V $ datafile;
Name
--------------------------------------------------------------------------------
C: \ app \ honghaibing \ oradata \ orcl \ system01.dbf
C: \ app \ honghaibing \ oradata \ orcl \ sysaux01.dbf
C: \ app \ honghaibing \ oradata \ orcl \ undotbs01.dbf
C: \ app \ honghaibing \ oradata \ orcl \ users01.dbf
C: \ app \ honghaibing \ oradata \ orcl \ example01.dbf
C: \ app \ honghaibing \ oradata \ scott_tbs01.dbf
You have selected 6 rows.
SQL> alter system set undo_management = manual scope = spfile;
The system has been changed.
SQL> startup
The Oracle routine has been started.
Total system global area 431038464 bytes
Fixed size 1375088 bytes
Variable Size 327156880 bytes
Database buffers 96468992 bytes
Redo buffers 6037504 bytes
The database has been loaded.
The database has been opened.
Create undo tablespace undotbs02 datafile 'C: \ app \ honghaibing \ oradata \ orcl
\ Users02.dddbf 'size 1g autoextend off;
SQL> alter system set undo_tablespace = "undotbs02" Scope = spfile;
The system has been changed.
SQL> alter system set undo_management = auto scope = spfile;
The system has been changed.
SQL> shutdown immediate
The database has been closed.
The database has been detached.
The Oracle routine has been disabled.
SQL> startup
The Oracle routine has been started.
Total system global area 431038464 bytes
Fixed size 1375088 bytes
Variable Size 327156880 bytes
Database buffers 96468992 bytes
Redo buffers 6037504 bytes
The database has been loaded.
The database has been opened.