undo 表空间损坏导致无法open

本文详细介绍了当数据库UNDO表空间文件损坏或丢失时,如何通过将数据库启动到mount状态,设置undo_management为手动模式,然后新建一个UNDO表空间并将其参数指向新表空间来修复数据库的方法。修复过程包括将数据库关闭、新建UNDO表空间、修改参数、重新开启数据库,最终确保数据库正常运行。
摘要由CSDN通过智能技术生成

undo 表空间损坏导致无法open

在数据库undo表空间文件损坏,或者undo表空间文件缺失的情况,无法打开数据库。

这两种情况都可以视为一种情况处理,解决方法一样。

启动数据库时 出现:

SQL> startup

ORACLE instance started.

Total System Global Area  709836800 bytes
Fixed Size                  2231752 bytes
Variable Size             536871480 bytes
Database Buffers          167772160 bytes
Redo Buffers                2961408 bytes
Database mounted.
ORA-01092: ORACLE instance terminated. Disconnection forced
ORA-30012: undo tablespace 'UNDOTBS1' does not exist or of wrong type

Process ID: 4098

Session ID: 1 Serial number: 5


可以很明显的看到,由于undo表空间损坏或丢失,导致无法打开。

解决思路很简单:新建一个undo表空间,然后将undo_tablespace指向新的undo表空间。但是,但是。。。新建表空间只能在数据库open状态下才能进行。

所以。。

因为oracle system 表空间还有回滚段,因为我们先可以让oracle使用回滚段打开数据库,然后就可以新建undo表空间了


解决思路:

1、将数据库启动到mount

2、alter system set undo_management=manual scope=spfile;

3、shutdown immediate

4 、startup 然后新建一个undo表空间 new_undotbsxx

5、修改undo_tablespace参数指向new_undotbsxx

6、记得 将undo_manageme参数修改回来。 alter system set undo_management=auto scope=spfile;



SQL> alter system set undo_management=manual scope=spfile;

System altered.

然后打开数据库---

SQL> startup
ORACLE instance started.

Total System Global Area  709836800 bytes
Fixed Size                  2231752 bytes
Variable Size             536871480 bytes
Database Buffers          167772160 bytes
Redo Buffers                2961408 bytes
Database mounted.
Database opened.

--已经顺利打开数据库

查看 --undo_management

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
undo_management                      string      MANUAL
undo_retention                       integer     900
undo_tablespace                      string      UNDOTBS11


现在可以新建一个undo_tablespace 然后将undo_tablespace参数指向过去。


SQL> create undo tablespace undotbs11 datafile '/u01/app/oracle/oradata/orcl/undotbs11.dbf' size 100m;

Tablespace created.

--然后将undo_tablespace指向为刚刚新建的undo表空间

SQL> alter system set undo_tablespace=undotbs11 scope=spfile;

System altered.


--最后一定一定要记得把undo_management  给改回来

SQL> alter system set undo_management=auto scope=spfile;

System altered.


然后关闭数据库,再打开

SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.

Total System Global Area  709836800 bytes
Fixed Size                  2231752 bytes
Variable Size             536871480 bytes
Database Buffers          167772160 bytes
Redo Buffers                2961408 bytes
Database mounted.
Database opened.


--没有问题,可以将以前损坏的undo表空间数据文件删除了

SQL> drop tablespace undotbs1 including contents and datafiles;

Tablespace dropped.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值