Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: ORA-00230 during RMAN backup

Re: ORA-00230 during RMAN backup

From: fmhabash <fmhabash_at_gmail.com>
Date: Wed, 26 Sep 2007 10:44:18 -0400
Message-ID: <46FA7042.4020707@gmail.com>


this is what I did when in encountered this issue a long time ago

 Issue below query and grab sid and serial#. select s.sid, username, program, module, action, logon_time, l.* from v$session s, v$enqueue_lock l where l.sid = s.sid and l.type = 'CF' and l.id1 = 0 and l.id2 = 2;

 From v$session, find PADDR value i.e. process address.

Match above PADDR with v$process ADDR and get SPID.

Use ps -ef to find SPID and kill it. (or wait for it to finish if you can)

Issue query in step 1 to make sure lock is gone

See here for more details Note:145619.1

--
http://www.freelists.org/webpage/oracle-l
Received on Wed Sep 26 2007 - 09:44:18 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US