Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Rman Restore operaton
thanks
From: Jared Still [mailto:jkstill_at_gmail.com]
Sent: Wednesday, November 22, 2006 2:15 PM
To: kennaim_at_gmail.com
Cc: oracle-l_at_freelists.org
Subject: Re: Rman Restore operaton
On 11/22/06, Ken Naim <kennaim_at_gmail.com> wrote: Is there a way to check how far along rman is during a restore (ow windods). Seems like all the files et touched and windows shows the total file size even if only 1% has been restored?
select
sid ,serial#from v$session_longops
--,context -- what is this?
--,units
--,sofar
--,totalwork
, &&blocksize * sofar bytes_sofar , &&blocksize * totalwork bytes_totalwork ,round(sofar/totalwork*100,2) "%_complete"
and opname not like '%aggregate%' and totalwork != 0 and sofar <> totalwork
You'll find that in the documentation BTW.
-- Jared Still Certifiable Oracle DBA and Part Time Perl Evangelist -- http://www.freelists.org/webpage/oracle-lReceived on Wed Nov 22 2006 - 13:22:07 CST
![]() |
![]() |