ora-01190,ora-01110,ORA-00600: internal error code, arguments: [4097]

使用rman做同平臺,同版本數據庫的數據同步,在源數據庫rman備份後,在目標數據庫進行不完全恢復

SQL> ALTER DATABASE RECOVER  database using backup controlfile until cancel

SQL> alter database open resetlogs;

查看alert日誌,出現下面的錯誤,於是,

SQL>alter system set "_allow_resetlogs_corruption"=true scope=spfile;

強制打開數據庫,alert日誌

ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below

ORA-01190: control file or data file 3 is from before the last RESETLOGS
ORA-01110: data file 3: '/oracle/app/oracle/oradata/bios/undotbs01.dbf'


ORA-00603: ORACLE server session terminated by fatal error
ORA-00600: internal error code, arguments: [4097], [12], [14], [11670], [], [], [], [], [], [], [
], []
opiodr aborting process unknown ospid (14106) as a result of ORA-603

ORA-00600: internal error code, arguments: [kdddgb:clsviol_kcbgcur_9], [0], [4272919], [1], [4294
967250], [524288], [], [], [], [], [], []
Incident details in: /oracle/app/oracle/diag/rdbms/bios/bios/incident/incdir_117626/bios_w000_141
12_i117626.trc
Errors in file /oracle/app/oracle/diag/rdbms/bios/bios/trace/bios_w000_14112.trc:
ORA-00600: internal error code, arguments: [kdddgb:clsviol_kcbgcur_9], [0], [4272919], [1], [4294
967250], [524288], [], [], [], [], [], []


先解決undo表空間文件,重建表空間

SQL>create undo tablespace undotbs01 datafile '/oracle/oradata/undotbs01.dbf' size 100M;

SQL>alter system set undo_tablespace=undotbs01;

SQL>drop tablespace undotbs1;

SQL> alter system set "_allow_resetlogs_corruption"=false scope=spfile;

SQL> shutdown immediate
SQL> startup

再去看alert日誌,發現已經沒有錯誤,這個還沒明白,應該是undo表空間導致一系列的錯誤。


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章