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

来源:互联网 发布:js移动全景图代码 编辑:程序博客网 时间:2024/06/05 10:44

使用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表空间导致一系列的错误。


0 0
原创粉丝点击