您好,欢迎访问一九零五行业门户网

ORA-00600: 内部错误代码, 参数: [4194], [24], [22], [], [], [], [], [

经在网上查询4194错误通常说明undo段出现问题,但我的oracle数据库版本为10.1.0.2。由于这个版本己经没有undo 段,用undo表空间进
由于电脑经常非法关机,导致数据关闭时,出现以下错误。
errors in file c:\oracle\product\10.1.0\admin\orcl\bdump\orcl_smon_5140.trc:
ora-00607: internal error occurred while making a change to a data block
ora-00600: internal error code, arguments: [4194], [24], [22], [], [], [], [], []
经在网上查询4194错误通常说明undo段出现问题,,但我的oracle数据库版本为10.1.0.2。由于这个版本己经没有undo 段,用undo表空间进行管理,所以网上有说undo段,那都是针对oracle 9i的。这里只是采用新建undo表空间进行替换进行的,这种方法也用undo表空间不回收时使用。
sql>shutdown immediate;   -- 正常关不掉
ora-00607: internal error occurred while making a change to a data block
ora-00600: internal error code, arguments: [4194], [24], [22], [], [], [], [], []
sql> shutdown abort          -- 强制关
sql> startup
sql> create undo tablespace undotbs2 datafile 'c:\oracle\product\10.1.0\oradata\orcl\undotbs02.dbf' size 200m;   
sql> alter system set undo_tablespace=undotbs2;   -- 修改数据库的undo表空间
sql> shutdown immediate --正常关库
-- 手动改初始化文件,
###########################################
undo_management=auto
undo_tablespace=undotbs2
###########################################
sql> shutdown immediate;
数据库已经关闭。
已经卸载数据库。
oracle 例程已经关闭。
sql> startup pfile='c:\oracle\product\10.1.0\admin\orcl\pfile\init.ora.10152011101227';
oracle 例程已经启动。
total system global area  171966464 bytes
fixed size                   787988 bytes
variable size             144964076 bytes
database buffers           25165824 bytes
redo buffers                1048576 bytes
数据库装载完毕。
数据库已经打开。
--恢复原来的表空间
sql> drop tablespace undotbs1 including contents;
表空间已删除。
sql>create undo tablespace undotbs1 datafile 'c:\oracle\product\10.1.0\oradata\orcl\undotbs01.dbf' size 200m; 
表空间已创建。.
sql> alter system set undo_tablespace=undotbs1;
系统已更改。
sql> shutdown immediate;  -- 关库
--修改参数文件,变更undo表空间回原来的值 .undo_tablespace=undotbs1
sql> startup pfile='c:\oracle\product\10.1.0\admin\orcl\pfile\init.ora.10152011101227';
oracle 例程已经启动。
total system global area  171966464 bytes
fixed size                   787988 bytes
variable size             144964076 bytes
database buffers           25165824 bytes
redo buffers                1048576 bytes
数据库装载完毕。
数据库已经打开。
sql> drop tablespace uundotbs2  including contents;
表空间已删除。
其它类似信息

推荐信息