Rman restore/recovery overall time

version 10202
How i can tell rman over all restored/recoverd time and progress %age?
i tried this but find out this but its showing peace by peace, and starts over....
SQL> SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,
ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
FROM V$SESSION_LONGOPS
WHERE OPNAME LIKE 'RMAN%'
AND OPNAME NOT LIKE '%aggregate%'
AND TOTALWORK != 0
AND SOFAR <> TOTALWORK;
SID SERIAL# CONTEXT SOFAR TOTALWORK %_COMPLETE
130 11615 1 135673 1050240 12.92
Edited by: DBA2008 on Apr 30, 2010 9:20 AM

1 SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
2 FROM V$SESSION_LONGOPS
3 WHERE OPNAME LIKE 'RMAN%'
4 AND OPNAME LIKE '%aggregate%'
5 AND TOTALWORK != 0
6* AND SOFAR <> TOTALWORK
SQL> /
no rows selected
1 SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
2 FROM V$SESSION_LONGOPS
3 WHERE OPNAME LIKE 'RMAN%'
4 AND OPNAME not LIKE '%aggregate%'
5 AND TOTALWORK != 0
6* AND SOFAR <> TOTALWORK
SQL> /
SID SERIAL# CONTEXT SOFAR TOTALWORK %_COMPLETE
126 16654 1 199156 1056000 18.86

Similar Messages

  • Block corruptioin after rman restore/recovery

    Thanks for taking my question!
    Oracle Enterprise Edition 11.1.0.7 on Windows 2008. Using Rman on-line backups COMPRESSED.
    Can anyone give me any ideas on why SYSAUX data block corruption should occur after a rman recovery?
    Below is my script. Am I missing something? Should I be physically removing the redo? Any ideas welcome?
    Thanks!
    Kathie
    rman> restore until seq = 123
    recover until seq = 123
    alter database open resetlogs;
    Background:
    I had to do a rman recovery the other day to restore our database back to the previous day. After the recovery the sysaux table became logically corrupted. I tried to fix data corruption with rman but it said it couldn't after reading thru 6 days of backups. I ended up deleting the database, recreating the database and restoring from an export takien a few hours prior.
    I now have a database to test rman recovery. Database has been up and rman backups (compressed) running for several days. I tried to recover back to previouse day and again SYSAUX has logical corruption. I tried to use Rman to recover data corruption but it failed.
    I deleted database and recreated it. Took several rman on-line backups (this time not compressed). Did 3rd recovery this time only a few hours back. This time everything worked - no sysaux block corruption but why? The only difference is the recovery used non compressed backups and recovery was a shorter time frame. why ???

    I agree the errors are not identical but I am going to stop performing compressed backups until I am sure that is not the issue.
    My first two recoveries had logical block corruption and this last one without compression set had no block corruption. I performed the same recovery process for all recoveries and the big difference was the successfull recovery did not have compressed backups. I checked v$database_block_corruption and it shows no errors. I also, performed a backup and verify to double check.
    The only issue I can see is below. I am hoping someone can confirm this is normal after "alter database open resetlogs". Can anyone verify that?
    Thanks!
    Kathie
    Thu Aug 27 10:17:49 2009
    alter database open resetlogs
    RESETLOGS after incomplete recovery UNTIL CHANGE 3587892
    Resetting resetlogs activation ID 3129052671 (0xba818dff)
    Thu Aug 27 10:17:50 2009
    Errors in file e:\oracle\diag\rdbms\cs90dev\cs90dev\trace\cs90dev_m000_2244.trc:
    ORA-00316: log 1 of thread 1, type 0 in header is not log file
    ORA-00312: online log 1 thread 1: 'E:\ORACLE\11.1.0\ORADATA\CS90DEV\REDO01.LOG'
    Errors in file e:\oracle\diag\rdbms\cs90dev\cs90dev\trace\cs90dev_m000_2244.trc:
    ORA-00316: log 2 of thread 1, type 0 in header is not log file
    ORA-00312: online log 2 thread 1: 'E:\ORACLE\11.1.0\ORADATA\CS90DEV\REDO02.LOG'
    Errors in file e:\oracle\diag\rdbms\cs90dev\cs90dev\trace\cs90dev_m000_2244.trc:
    ORA-00316: log 3 of thread 1, type 0 in header is not log file
    ORA-00312: online log 3 thread 1: 'E:\ORACLE\11.1.0\ORADATA\CS90DEV\REDO03.LOG'
    Thu Aug 27 10:17:53 2009
    Setting recovery target incarnation to 3

  • Rman restore/recovery

    Hi Guys,
    10.2.0.4
    Scenario:
    DELETED: REDO LOGS, ARCHIVE LOGS, DATAFILES
    STILL IN PLACE: CURRENT CONTROLFILES, INIT FILE
    If I have my current controlfiles with me but no re-do logs, I won't be able to use the controlfiles for recovery right as it won't be able to find the redo logs? I still have to restore the controfile from the database or use the create controlfile statement?
    Please advise.
    thanks

    Hi Guys,
    After i startup mount the database. I did a restore database followed by recover database. However, there's error as below:
    RMAN> run
    2> {
    3> allocate channel c1 type disk;
    4> recover database;
    5> }
    allocated channel: c1
    channel c1: sid=157 devtype=DISK
    Starting recover at 24-JAN-11
    starting media recovery
    media recovery failed
    released channel: c1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 01/24/2011 18:54:46
    ORA-00283: recovery session canceled due to errors
    RMAN-11003: failure during parse/execution of SQL statement: alter database reco
    ver if needed
    start
    ORA-00283: recovery session canceled due to errors
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: 'C:\ORACLE\PRODUCT\10.2.0\ORADATA\TESTDB\REDO0
    2.LOG'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    thanks

  • Allocate channel manually for RMAN restore/recovery

    How i can manually allocate channel for my backups going to tape?
    For disk backups i can do and it work...
    RUN
    ALLOCATE CHANNEL disk1 DEVICE TYPE DISK FORMAT 'J:\dbname\%U';
    restore database preview;
    }

    Hi,
    Sorry to say, on first impression "I would have fired the employee for posting the company/organization code to outside world with out any going through norms"
    Secondly, why can't you debug the code by your self ?
    I apologize if you felt bad... since it's not a professional way to discuss the issue
    - Pavan Kumar N
    Edited by: Pavan Kumar on Jun 27, 2012 11:29 PM
    Edited by: Pavan Kumar on Jun 27, 2012 11:32 PM

  • RMAN Restore takes long time

    Hi,
    Database version : 10.2.0.4
    OS : Solaris 10
    I am restoring the 200gb database from a production backup (tape) to test server, since the mount points are different on test server i have given the set new name to redirect the restore. For restore of each database file (32 gb) my backup software (netbackup 7.0.1) shows it reading .. till it reaches 200gb . Any idea why it is behaving like this?
    Regards
    Nishal

    My question is why it is reading entire database for restoring single database file?You are trying to restore entire database. Not a just single data file .. is it?
    1) Check is media tapes are busy right now? and check media people is tape is reading or not?
    2) for example you can see "reading backup piece <handle>"
    select distinct media from v$backup_piece_details where handle='<handl>';then check the above Media is exist and ready to use or not?
    If the tape is not available, Restore will hangs until the tapes are ready.

  • RMAN and Point IN time recovery

    1. We have a table with bad data.
    2. We know that data was entered via the GUI exactly one week ago.
    3. I have an RMAN database full back-up that was taken the same day but before the table was screwed.
    4. the database in archivelog mode.
    5. we will be happy to restore the database in the condition before the change occured
    5. when I restore database via RMAN, and do:
    recover UNTIL TIME '16-MAR-2005';
    Oracle restore bad data, and if I put time or scn I get a message that the database incarnation is wrong!
    Is there any other way to do it?
    TIA

    Thanks Laurent! I was able to restore it only until Mar. 17?
    1. RMAN> reset database to incarnation 2;
    2. RMAN> restore database until time "timestamp '2005-03-15 00:00:00.00'";
    RMAN-03002: failure of recover command at 03/29/2005 19:44:11
    RMAN-06555: datafile 1 must be restored from backup created before 15-MAR-05
    3. My backup was created on Mar. 16, :
    RMAN> restore database until time "timestamp '2005-03-17 00:00:00.00'";
    RMAN-03002: failure of restore command at 03/29/2005 19:46:55
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 4 found to restore
    RMAN-06023: no backup or copy of datafile 3 found to restore
    4. RMAN>Restore database; OK
    5. RMAN>Recover database; internal error!
    RMAN-03002: failure of recover command at 03/29/2005 20:08:02
    ORA-00283: recovery session canceled due to errors
    RMAN-11003: failure during parse/execution of SQL statement: alter database reco
    ver logfile 'G:\ORACLE\ORA10G\FLASH_RECOVERY_DATA\ORCLSRMA\CONTROLFILE\2005_03_2
    3\O1_MF_1_14_14442T9B_.ARC'
    ORA-00283: recovery session canceled due to errors
    ORA-00600: internal error code, arguments: [3021], [1], [15], [2], [0], [419057]
    , [0], [416789]
    6. RMAN> recover database until time "timestamp '2005-03-17 00:00:00.00'"; OK
    7.RMAN> recover database until time "timestamp '2005-03-17 00:00:00.00'"; OK
    8. RMAN> alter database open resetlogs; OK
    9. RMAN> list incarnation;
    List of Database Incarnations
    DB Key Inc Key DB Name DB ID STATUS Reset SCN Reset Time
    1 1 ORCLSRMA 2671268838 PARENT 1 09-MAR-04
    2 2 ORCLSRMA 2671268838 PARENT 318842 01-MAR-05
    3 3 ORCLSRMA 2671268838 ORPHAN 380529 25-MAR-05
    5 5 ORCLSRMA 2671268838 CURRENT 409286 29-MAR-05
    4 4 ORCLSRMA 2671268838 ORPHAN 416789 25-MAR-05

  • RMAN 9.2.0.4 to 10.2.0.3 - restore/recovery worked but OPEN RESTLOGS Failed

    Hi,
    I have taken the RMAN backup from 9.2.0.4 database - moved to another server having 10.2.0.3. RMAN restore/recovery (incomplete) worked but database got terminated during "ALTER DATABASE OPEN RESETLOGS;".
    ORA-00704: bootstrap process failure
    ORA-39700: database must be opened with UPGRADE option
    Fri Oct 26 14:49:23 2007
    Error 704 happened during db open, shutting down database
    USER: terminating instance due to error 704
    Fri Oct 26 14:49:23 2007
    Errors in file /opt/app/tmdsdb/ora01/Q0TEST/logs/bdump/q0test_psp0_24055.trc:
    ORA-00704: bootstrap process failure
    Instance terminated by USER, pid = 26454
    ORA-1092 signalled during: alter database open resetlogs...
    Anyone has any idea what to do? or is it possible?
    Thanks in advance.
    Daljinder

    This is my question .....how can I do that. I did
    1. restored database - using RMAN 10g
    2. recovered using backup controlfile until cancel;
    3. Tried to open "alter database open resetlogs;";
    4. Got error.
    5. tried to oprn "startup upgrade;"
    SQL> startup upgrade;
    ORACLE instance started.
    Total System Global Area 520093696 bytes
    Fixed Size 2031352 bytes
    Variable Size 406847752 bytes
    Database Buffers 109051904 bytes
    Redo Buffers 2162688 bytes
    Database mounted.
    ORA-01092: ORACLE instance terminated. Disconnection forced
    So how can I do this.....

  • RMAN restore from a particular backupset

    hi
    how do i instruct RMAN to restore data from a particular backupset. for example, if i have last 7 days backup sets (plus archivelog) available in my backup location, how do i instruct RMAN to use only the latest backupset for the restoration purpose. i've a testing database on another host which i have to refresh using RMAN backup. however, i can't move all the 7 days backupsets from the production host server to the testing host due to insufficient space. is it possible to use only the latest backupset and instruct RMAN to use.
    thanks in advance.
    Edited by: user13133425 on May 25, 2012 12:24 PM

    You need to incomplete recovery. You can use one of the methods below.
    Time-Based incomplete recovery:
    $ sqlplus "/ as sysdba"
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/catalog_user_password@catalogdb
    RMAN> restore database until time "to_date('06/05/11 12:0:00','DD/MM/YY HH24:MI:SS')";
    RMAN> recover database until time "to_date('06/05/11 12:0:00','DD/MM/YY HH24:MI:SS')";
    SQL> alter database open resetlogs;
    SCN-Based incomplete recover:
    $ sqlplus "/ as sysdba"
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/catalog_user_password@catalogdb
    RMAN> restore database until scn 1000;
    RMAN> recover database until scn 1000;
    SQL> alter database open resetlogs;
    Archive log sequence based incomplete recovery:
    $ sqlplus "/ as sysdba"
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/catalog_user_password@catalogdb
    RMAN> restore database until sequence 9923;
    RMAN> recover database until sequence 9923;
    SQL> alter database open resetlogs;
    Talip Hakan Ozturk
    http://taliphakanozturken.wordpress.com/

  • RMAN Restore Error - media recovery requesting unknown log: thread 1 seq 7

    Im using RMAN to copy a database to another server. The new server is IDENTICAL to the old one. By identical I mean it has the same sever name, ip address, operating system, Oracle version and directory structure.
    The new server already has the instance created, (same name as the old server instance, paths etc)
    The backup files have been manually restored to the new server, same locations as they were on the old one. ( RMAN did an automatic controlfile backup and also the archivelogs on the old server ).
    Ive restored the control file on the new server from the RMAN backup pieces.
    Ive catalogued the RMAN backup pieces on the new server.
    I know the last sequence available in the archivelogs backup by running on the new server :
    list backup of archivelog all;
    List of Backup Sets
    ===================
    BS Key Size Device Type Elapsed Time Completion Time
    5 14.43M DISK 00:00:03 11-MAY-11
    BP Key: 9 Status: AVAILABLE Compressed: NO Tag: TAG20110511T163502
    Piece Name: C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\BACKUPSET\
    011_05_11\O1_MF_ANNNN_TAG20110511T163502_6WOC5833_.BKP
    List of Archived Logs in backup set 5
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 2 550217 10-MAY-11 556559 11-MAY-11
    1 3 556559 11-MAY-11 559776 11-MAY-11
    1 4 559776 11-MAY-11 560093 11-MAY-11
    1 5 560093 11-MAY-11 560794 11-MAY-11
    BS Key Size Device Type Elapsed Time Completion Time
    7 15.50K DISK 00:00:01 11-MAY-11
    BP Key: 10 Status: AVAILABLE Compressed: NO Tag: TAG20110511T163653
    Piece Name: C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\BACKUPSET\
    011_05_11\O1_MF_ANNNN_TAG20110511T163653_6WOC8PMP_.BKP
    List of Archived Logs in backup set 7
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 6 560794 11-MAY-11 560851 11-MAY-11
    So far its all going swimmingly well.
    Now I want to restore the datafiles and recover. So I ran :
    RMAN run { restore database; recover database; alter database open resetlogs; }
    This gave me the output below which goes great but I get a final error, I think the error is because its looking for an archive log thats not in the backup set, but it should be. However, I think SCN 560851 is for a log that hadnt been created yet on the old server when the backup was ran ?
    How do I address resolving the error ? Its worth pointing out log, "archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\ARCHIVELOG
    \2011_05_11\O1_MF_1_6_6WOK1X4W_.ARC recid=10 stamp=750881741" isnt on the old server either which is why its not in the backup set.
    I can do a alter database open reset logs but Id prefer to know why its failing.
    Any help would be much appreciated.
    RMAN> run { restore database; recover database; alter database open resetlogs; }
    Starting restore at 11-MAY-11
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting datafile backupset restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to C:\ORACLE\PRODUCT\10.2.0\ORADATA\SAT\SYSTEM01.DBF
    restoring datafile 00002 to C:\ORACLE\PRODUCT\10.2.0\ORADATA\SAT\UNDOTBS01.DBF
    restoring datafile 00003 to C:\ORACLE\PRODUCT\10.2.0\ORADATA\SAT\SYSAUX01.DBF
    restoring datafile 00004 to C:\ORACLE\PRODUCT\10.2.0\ORADATA\SAT\USERS01.DBF
    channel ORA_DISK_1: reading from backup piece C:\ORACLE\PRODUCT\10.2.0\FLASH_REC
    OVERY_AREA\SAT\BACKUPSET\2011_05_11\O1_MF_NNNDF_TAG20110511T163507_6WOC5CM7_.BKP
    channel ORA_DISK_1: restored backup piece 1
    piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\BACKUPSET\2011_05_
    11\O1_MF_NNNDF_TAG20110511T163507_6WOC5CM7_.BKP tag=TAG20110511T163507
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:55
    Finished restore at 11-MAY-11
    Starting recover at 11-MAY-11
    using channel ORA_DISK_1
    starting media recovery
    channel ORA_DISK_1: starting archive log restore to default destination
    channel ORA_DISK_1: restoring archive log
    archive log thread=1 sequence=6
    channel ORA_DISK_1: reading from backup piece C:\ORACLE\PRODUCT\10.2.0\FLASH_REC
    OVERY_AREA\SAT\BACKUPSET\2011_05_11\O1_MF_ANNNN_TAG20110511T163653_6WOC8PMP_.BKP
    channel ORA_DISK_1: restored backup piece 1
    piece handle=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\BACKUPSET\2011_05_
    11\O1_MF_ANNNN_TAG20110511T163653_6WOC8PMP_.BKP tag=TAG20110511T163653
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\ARCHIVELOG
    \2011_05_11\O1_MF_1_6_6WOK1X4W_.ARC thread=1 sequence=6
    channel default: deleting archive log(s)
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\SAT\ARCHIVELOG
    \2011_05_11\O1_MF_1_6_6WOK1X4W_.ARC recid=10 stamp=750881741
    unable to find archive log
    archive log thread=1 sequence=7
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 05/11/2011 18:15:42
    RMAN-06054: media recovery requesting unknown log: thread 1 seq 7 lowscn 560851
    RMAN>
    Edited by: user12173666 on 11-May-2011 10:28

    You need to do incomplete recovery i.e. to ask RMAN to restore/recover to some specific point in time. This is usually done with some UNTIL clause or SET UNTIL statement. Example in your case:
    SET UNTIL SEQUENCE 7;See http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta065.htm#RCMRF160.

  • RMAN restore to point in time

    Hi all,
    I am trying to restore database to point in time. But while doing this i am getting following error.
    But backups are available. Could you please help me...
    [oracle@localhost ~]$ rman target /
    Recovery Manager: Release 11.2.0.1.0 - Production on Wed Feb 13 11:54:41 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    connected to target database: ORCL (DBID=1314445644, not open)
    RMAN> run
    2> {
    3> set until time "to_date('12-02-2013 20:03:00', 'DD-MM-YYYY HH24:MI:SS')";
    4> restore database;
    5> recover database;
    6> }
    executing command: SET until clause
    Starting restore at 13-FEB-13
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=10 device type=DISK
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 02/13/2013 11:58:02
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 5 found to restore
    RMAN-06023: no backup or copy of datafile 4 found to restore
    RMAN-06023: no backup or copy of datafile 3 found to restore
    RMAN-06023: no backup or copy of datafile 2 found to restore
    RMAN-06023: no backup or copy of datafile 1 found to restore
    RMAN>

    Please find the details:
    RMAN> list backup;
    List of Backup Sets
    ===================
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    1 Full 1.04G DISK 00:03:11 12-FEB-13
    BP Key: 1 Status: AVAILABLE Compressed: NO Tag: TAG20130212T200534
    Piece Name: /u01/app/oracle/flash_recovery_area/ORCL/backupset/2013_02_12/o1_mf_nnndf_TAG20130212T200534_8knnsq11_.bkp
    List of Datafiles in backup set 1
    File LV Type Ckp SCN Ckp Time Name
    1 Full 832649 12-FEB-13 /u01/app/oracle/orcl/system01.dbf
    2 Full 832649 12-FEB-13 /u01/app/oracle/orcl/sysaux01.dbf
    3 Full 832649 12-FEB-13 /u01/app/oracle/orcl/undotbs01.dbf
    4 Full 832649 12-FEB-13 /u01/app/oracle/orcl/users01.dbf
    5 Full 832649 12-FEB-13 /u01/app/oracle/orcl/example01.dbf
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    2 Full 9.36M DISK 00:00:04 12-FEB-13
    BP Key: 2 Status: AVAILABLE Compressed: NO Tag: TAG20130212T200534
    Piece Name: /u01/app/oracle/flash_recovery_area/ORCL/backupset/2013_02_12/o1_mf_ncsnf_TAG20130212T200534_8knnzzgt_.bkp
    SPFILE Included: Modification time: 12-FEB-13
    SPFILE db_unique_name: ORCL
    Control File Included: Ckp SCN: 832680 Ckp time: 12-FEB-13
    BS Key Size Device Type Elapsed Time Completion Time
    3 44.23M DISK 00:00:05 12-FEB-13
    BP Key: 3 Status: AVAILABLE Compressed: NO Tag: TAG20130212T201859
    Piece Name: /u01/app/oracle/flash_recovery_area/ORCL/backupset/2013_02_12/o1_mf_annnn_TAG20130212T201859_8knolw61_.bkp
    List of Archived Logs in backup set 3
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 3 797152 22-JUN-12 811717 22-JUN-12
    1 4 811717 22-JUN-12 832158 12-FEB-13
    1 5 832158 12-FEB-13 832625 12-FEB-13
    1 6 832625 12-FEB-13 832628 12-FEB-13
    1 7 832628 12-FEB-13 832632 12-FEB-13
    1 8 832632 12-FEB-13 834189 12-FEB-13
    RMAN> list copy;
    specification does not match any datafile copy in the repository
    specification does not match any control file copy in the repository
    List of Archived Log Copies for database with db_unique_name ORCL
    =====================================================================
    Key Thrd Seq S Low Time
    1 1 3 A 22-JUN-12
    Name: /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2012_06_22/o1_mf_1_3_7y98vvpd_.arc
    2 1 4 A 22-JUN-12
    Name: /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2013_02_12/o1_mf_1_4_8knnk9r3_.arc
    3 1 5 A 12-FEB-13
    Name: /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2013_02_12/o1_mf_1_5_8knns8fs_.arc
    4 1 6 A 12-FEB-13
    Name: /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2013_02_12/o1_mf_1_6_8knns9ob_.arc
    5 1 7 A 12-FEB-13
    Name: /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2013_02_12/o1_mf_1_7_8knnsc0h_.arc
    6 1 8 A 12-FEB-13
    Name: /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2013_02_12/o1_mf_1_8_8knoltyl_.arc
    7 1 9 A 12-FEB-13
    Name: /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2013_02_12/o1_mf_1_9_8knon5bh_.arc
    8 1 10 A 12-FEB-13
    Name: /u01/app/oracle/flash_recovery_area/ORCL/archivelog/2013_02_12/o1_mf_1_10_8knpjyr7_.arc
    RMAN>

  • I am getting error (-1) while updating my iPhone 4 to iOS 5.1. The phone has gone into a recovery mode. Restore fails every time at "restoring the firmware" stage. Striped bar remains for a long time, then shows "error (-1)" and the restore fails. Help!

    I am getting error (-1) while updating my iPhone 4 to iOS 5.1. The phone has gone into a recovery mode. Restore fails every time at "restoring the firmware" stage. Striped bar remains for a long time, then shows "error (-1)" and the restore fails. I have been doing it for last 12 hours. Help!

    Thanks for your reply Michalo. I am in India and here Apple care does not work on Sundays. I have been without my phone for the entire day. Perhaps tomorrow will bring some respite. There is not solution to "error (-1)" on any forum it seems. I found one forum which suggested use of Tiny Umbrella. Any idea about that?

  • Restoring from Lion Time Machine backup and keeping Lion recovery partition

    I am installing a new hard drive in my MacBook Pro. I have a Time Machine backup of everything, but I'm aware that just restoring the Time Machine backup to the new drive will not restore the Lion recovery drive/partition. What is the best way to move my data to the new drive? Am I best doing a clean install and moving everything over by hand from the Time Machine backup?

    I've just done this. I booted from a Lion Recovery USB stick then restored from a Time Capsule. I had no RecoveryHD partition after it.
    However, if you download and run the Lion installer once you log in to your desktop it will re-create the RecoveryHD partition. Long way round though.
    Best solution is to make a bootable USB (8GB) or DVD from the Lion installer App. Then do a new install of Lion to get the Recovery HD partition created. Once installed you can restart and boot up using the newly created Recovery HD and restore your entire computer from the Time Capsule. Hey presto, your computer should be back to the way it was.

  • My phone has gone into recovery mode on its own.  says to connect to itunes.  i have restored it 10 times and it does nothing please help me i am out of the country and desparate

    my phone has gone into recovery mode on its own.  says to connect to itunes.  i have restored it 10 times and it does nothing please help me i am out of the country and desparate

    Open iTunes on computer. Connect iPhone to computer. If the iPhone is recognized in Recovery Mode, then Restore the Firmware. If not recognized, then hold both Home and Power Buttons until the iPhone is recognized in Recovery Mode. Usually takes about 20 seconds of holding both buttons. Restore the iPhone Firmware.

  • My 27" iMac has just creen issue repaired. I restored from my time machine and now the white screen is back and I am unable to access an recovery option. It looks like its no responding to the USB keyboard

    My 27" iMac has just come back from the workshop after having a white screen issue repaired. I restored from my time machine and now the white screen is back and I am unable to access an recovery option. It looks like its no responding to the USB ke

    Thanks for your reply! I must apologise for the quality of my post. I inadvertently posted it before it was corrected.
    I am very disappointed with this iMac. It is only 18 months old and this will be the third visit to the workshop. I had expected more from Apple and from their repair agents. Luckily I have AppleCare.

  • HT1212 My Ipad is disabled by wrong password and I have tried to reset and restore a few times with no success. Now I-tunes won't even recognize the I-pad in recovery mode. I need help please.

    My Ipad is disabled by wrong password and I have tried to reset and restore a few times with no success. Now I-tunes won't even recognize the I-pad in recovery mode. I need help please.

    If the iPad was running iOS 7,  iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just cancelling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

Maybe you are looking for

  • Can i move iTunes app purchases from one account to another?

    My daughter has an itues account and she uses it for her purchases from the itunes store.  She purchased an iPod Touch for her son and used her account with the iPod to purchase apps for him.   She just purchased an iPad for him and obviously all the

  • I need to query from db table and static VO in same time

    I have query VO which returns user roles so the result will be something like 1,5,6,3,1 and i have static list contains the role names with their codes 1 ------> administrator 2 -------> user 3 --------> system manager I used the first VO to build AD

  • Acrobat 9 pro

    I purchased Adobe Creative Suite 4, Design Premium and had to uninstall it on my old system before migrating to a new macbook pro which has no disc drive. I am now unable to find any download files for Acrobat 9 Pro (for mac) on the adobe servers. It

  • Linux VM KVP IP can't be shown on Hyper-V Manager after querying its KVP/IP information on Hyper-V host several times

    Hello [Sorry for asking the same question in the wrong place/forum of "Hyper-V"] I am using a CentOS 6.5 VM (Linux kernel 2.6.32-431) and (generation 2) CentOS 7 VM (Linux kernel 3.10.0-123) with Hyper-V KVP daemon installed, and I periodically query

  • HT1595 Cisco's RV Series Routers as guest with apple tv?

    Im on a Cisco's RV Series Routers as guest and it connects with my new apple tv but I cant download content from the net. As a guest you dont need a password to connect however if you open a webbrowser it then asks for a password. As apple tv doesn't