Chinaunix首页 | 论坛 | 博客
  • 博客访问: 496860
  • 博文数量: 161
  • 博客积分: 6010
  • 博客等级: 准将
  • 技术积分: 1947
  • 用 户 组: 普通用户
  • 注册时间: 2007-08-25 01:20
文章分类

全部博文(161)

文章存档

2011年(44)

2010年(47)

2009年(48)

2008年(22)

我的朋友

分类: Oracle

2011-03-16 12:43:02

Oracle Server - Enterprise Edition - Version: 8.1.7.4 to 11.2.0.2.0 - Release: 8.1.7 to 11.2
Information in this document applies to any platform.

Symptoms


Dropping a Undo tablespace give message 

ORA-01548: active rollback segment

Or

Undo segment shows status as needs recovery

Changes

New Undo tablespace was created and a attempt is made to drop old undo tablespace 

Cause

The issue could happen if the datafile on which the undo segments reside is offline and the transaction cannot be rolled backed since the file is offline

Or

This could also happen if there is any issue in the Undo segment itself

Solution


Check if the Undo segment status first
----------------------------------------


select segment_name,status,tablespace_name from dba_rollback_segs where status not in ('ONLINE','OFFLINE') ;

_SYSSMU3$ NEEDS RECOVERY UNDO01

In the above example Undo segment _SYSSMU3$ is in Needs recovery status.
This segment belongs to Undo tablespace UNDO01

Check the status of the datafile present in the tablespace UNDO01

Select status ,name,file# from v$datafile where ts# in (Select ts# from v$tablespace where name='UNDO01' );


SQL>Select status ,name,file# from v$datafile where ts# in (Select ts# from v$tablespace where name='UNDO01' );

STATUS NAME FILE#
------- -------------------------------------------------- ----------
ONLINE     /u01/undo01_01.dbf 56
RECOVER  /u02/undo01_03.dbf 77

So clearly one file is in Recover status


Option a

=======

If the database is in Archive log mode and you have all the required archive log mode you can do the following :-

Find if you have all the required Archive logs on disk or If using Rman ensure they exist in the backup

Query 1
---------
SQL>Select checkpoint_change# from v$datafile_header where file_id= ;

Now find these changes are present in which Archive log

Query 2
---------
SQL>Select sequence#,thread#,name from v$archived_log where
  between first_change# and next_change# ;

Ensure you have all the archive logs starting from this sequence# till the current sequence# in your database

For example
==========



SQL> select checkpoint_change#,file#,status from v$datafile_header where file#=77
;

CHECKPOINT_CHANGE# FILE# STATUS
------------------ ---------- -------
  2103113 4 OFFLINE     77

SQL>Select sequence#,thread#,name from v$archived_log where 2103113 
          between first_change# and next_change# ;


SEQUENCE# THREAD#  NAME
--------------------------------------------------------------------------------

96 1 /u01/arch/O1_MF_1_96_6OKHP.Arc





If using rman


Check if the archive log from this sequence till current sequence is available 

Rman>List backup of archivelog from sequence

Rman> recover datafile ;

Rman> sql 'alter database datafile online' ;

if using sqlplus
-------------

Ensure the archive logs are present on disk

SQL>recover datafile ;

Type AUTO and hit enter

Once recovery is done

SQL>Alter database datafile online ;

If the archive logs have been restored to a different location than the Default archive log destination your database is using then specify the same using set source command in sqlplus

SQL>Set logsource "/u01/arch/newlocation" ;

SQL>recover datafile ;

Type AUTO and hit enter

Once recovery is done

SQL>Alter database datafile online ;


Option b

=========

If database is in No archive log mode and the redo log has been reused

Open a ticket with oracle Support and explore the options

You can Upload the following trace file while opening the ticket

SQL>Alter session set tracefile_identifier='corrupt';

SQL>Alter system dump undo header "";

Go to udump

ls -lrt *corrupt*

Upload this trace file

Also upload the alert log file



显示相关信息 相关的


产品
  • Oracle Database Products > Oracle Database > Oracle Database > Oracle Server - Enterprise Edition
错误
ORA-1548

阅读(723) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2011-06-05 01:45:50

大连法律咨询在线 http://www.fabowang.com 大连律师在线咨询 http://www.fabowang.com 大连法律顾问网 http://www.fabowang.com 大连律师咨询 http://www.fabowang.com