ON : Oracle 10.2.0.4, Windows 2003
能够正常启动数据库,但随即便发生宕机现象。
alert日志报如下错误:
Wed Apr 29 10:33:41 2015
Errors in file d:\oracle\product\10.2.0\admin\orcl\udump\orcl_ora_5316.trc:
ORA-00603: ORACLE server session terminated by fatal error
ORA-00600: internal error code, arguments: [4193], [4278], [4283], [], [], [], [], []
ORA-00600: internal error code, arguments: [4193], [4278], [4283], [], [], [], [], []
Wed Apr 29 10:34:42 2015
PMON: terminating instance due to error 472
Wed Apr 29 10:34:42 2015
Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_ckpt_4020.trc:
ORA-00472: PMON process terminated with error
解决方法:
1.生成pfile参数文件,修改如下参数值:
undo_tablespace='SYSTEM'
undo_management='MANUAL'
2.使用pfile启动数据库,发现数据库正常启动,且没有在短时间内停机。
3.创建新的undo表空间
4.修改pfile文件,切换到新创建的undo表空间
undo_tablespace='UNDOTBS02'
undo_management='AUTO'
5.使用pfile文件重新启动数据库,并生成新的spfile文件,最后再重启一次数据库,使其使用spfile参数文件。
能够正常启动数据库,但随即便发生宕机现象。
alert日志报如下错误:
Wed Apr 29 10:33:41 2015
Errors in file d:\oracle\product\10.2.0\admin\orcl\udump\orcl_ora_5316.trc:
ORA-00603: ORACLE server session terminated by fatal error
ORA-00600: internal error code, arguments: [4193], [4278], [4283], [], [], [], [], []
ORA-00600: internal error code, arguments: [4193], [4278], [4283], [], [], [], [], []
Wed Apr 29 10:34:42 2015
PMON: terminating instance due to error 472
Wed Apr 29 10:34:42 2015
Errors in file d:\oracle\product\10.2.0\admin\orcl\bdump\orcl_ckpt_4020.trc:
ORA-00472: PMON process terminated with error
解决方法:
1.生成pfile参数文件,修改如下参数值:
undo_tablespace='SYSTEM'
undo_management='MANUAL'
2.使用pfile启动数据库,发现数据库正常启动,且没有在短时间内停机。
3.创建新的undo表空间
4.修改pfile文件,切换到新创建的undo表空间
undo_tablespace='UNDOTBS02'
undo_management='AUTO'
5.使用pfile文件重新启动数据库,并生成新的spfile文件,最后再重启一次数据库,使其使用spfile参数文件。