重庆思庄Oracle、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 508|回复: 0
打印 上一主题 下一主题

[Oracle] Oracle报错ORA-00603 ORA-00600[4193]错误 解决方案

[复制链接]
跳转到指定楼层
楼主
发表于 2024-1-21 13:10:15 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
一、故障现象:
1、数据库是通过冷备恢复
2、启动数据库后出现ORA-600 【4193】的错误
3、数据库被强制关闭
查看告警日志:
ORA-00600: internal error code, arguments: [4193], [], [], [], [], [], [], [], [], [], [], []
PMON (ospid: 10635): terminating the instance due to error 472
二、解决方法:
1、通过spfile生成pfile
create pfile from spfile;
File created.


2、编辑pfile文件
vi new.ora
#*.undo_tablespace='UNDOTBS1'
undo_management = 'MANUAL'
rollback_segments = 'SYSTEM'


3、通过pfile启动Instance
startup mount pfile='/home/oracle/new.ora';
ORACLE instance started.
Total System Global Area  521936896 bytes
Fixed Size                  2229944 bytes
Variable Size             360712520 bytes
Database Buffers          155189248 bytes
Redo Buffers                3805184 bytes
Database mounted.
Elapsed: 00:00:00.00


show parameter undo
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
undo_management                      string      MANUAL
undo_retention                       integer     900
undo_tablespace                      string


4、打开数据库
alter database open;
Database altered.
此时打开数据库正常



5、删除原有的undo tablespace创建新的undo tablespace
drop tablespace undotbs1 including contents and datafiles;
Tablespace dropped.


create undo tablespace undotbs1 datafile '/u01/app/oracle/oradata/orcl/undotbs01.dbf' size 100m
02:03:50   3  autoextend on;
Tablespace created.


6、关闭数据库,重新通过spfle启动
shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.


startup
ORACLE instance started.
Total System Global Area  521936896 bytes
Fixed Size                  2229944 bytes
Variable Size             360712520 bytes
Database Buffers          155189248 bytes
Redo Buffers                3805184 bytes
Database mounted.
Database opened.


数据库启动正常,问题解决!


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 支持支持 反对反对
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2024-5-3 08:53 , Processed in 0.098762 second(s), 20 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表