Backup set is over 7 days -- DB status is NOMOUNT -- RESTORE CONTROLFILE

I'm trying to do a restore of a control file using RMAN.
After doing a STARTUP NOMOUNT of the database, I try:
SET DBID = [whatever]
RESTORE CONTROLFILE FROM AUTOBACKUP;
The error I get is:
channel ORA_DISK_1: no AUTOBACKUP in 7 days found
And that's true. The backup set I'm trying to restore from is over 7 days old.
I tried
RESTORE CONTROLFILE FROM AUTOBACKUP UNTIL TIME "TO_DATE('12/17/08 18:00:00', 'MM/DD/YY HH24:MI:SS')"
and I get the same error.
All the examples I've seen using UNTIL TIME seem to assume that the database status is MOUNT not NOMOUNT, which is needed if you don't have a control file in the first place.
How do I get around this problem?
=== Al

Al,
Set your env variable oracle_sid = whatever_sid
then from command line
  c:> rman target /
   or
   $> rman target /
  And use one of the following to list your backups
RMAN> LIST BACKUP;
RMAN> LIST BACKUP OF DATABASE;
RMAN> LIST BACKUP SUMMARY;
RMAN> LIST INCARNATION;
RMAN> LIST BACKUP BY FILE;
RMAN> LIST COPY OF DATABASE ARCHIVELOG ALL;
RMAN> LIST COPY OF DATAFILE 1, 2, 3;
RMAN> LIST BACKUP OF DATAFILE 11 SUMMARY;
RMAN> LIST BACKUP OF ARCHIVELOG FROM SEQUENCE 1437;
RMAN> LIST CONTROLFILECOPY "/tmp/cntrlfile.copy";
RMAN> LIST BACKUPSET OF DATAFILE 1;Regards

Similar Messages

  • Time machine initial backup is taking over 3 days

    I have an external network drive which I am trying to back up my MacBook Pro OS X 10.6.8 to using Time Machine.  Why after 2 days is the backup only 40% done?  I know it can take time to set it up but... really?
    I had to start over since it is a laptop computer and I do need to take it with me... but I really can't afford more than 24 hours of keeping it on the network.
    What's the deal?  Thanks!

    https://discussions.apple.com/docs/DOC-4055

  • I tried to restore my phone. The only thing that's stuck is my photos. It says downloading 19 of 277. It's been like that for over two days. I tried to restore it again. I even tried to turn it off and on. Not all my photos are copied onto my computer. :(

    I need a way to fix this without losing my photos. I have a iPhone 3GS

    This happened to me, it took me 44 hours to restore my photos.  I explained everything under a similar question just two days ago.  Mine got stuck for six hours on 139 of 811 and again at different places the last was 8:00 last night at 800 of 811, finally completed at 4:00 am this morning.  Keep it plugged in, close to your wi-fi, make sure you wi-fi in connected in settings . Keep it in the locked sleeping position and don't use it.  Tell everyone not to text or call you for the next 24 hours.  If you have to use it don't unplug it, text back or answer the call an then immediately lock it and let it sleeps.  When you use it it stops the restore and has to start up again.  Hope this helps

  • Can not restore data files from backup set

    I am trying to restore Server A's backup data to Server B (they are all oracle11g) using rman. The restore commands is below:
    rman target /;
    shutdown immediate;
    startup nomount;
    restore controlfile from '/usr/local/oracle/backup/20100418/ctl_xxx'
    alter database mount;
    catalog start with '/usr/local/oracle/backup/20100418/';
    restore database;
    recover database;
    alter database open resetlogs;
    For the first time, it works. But when i tried to restore another backup data by the same way:
    rman target /;
    shutdown immediate;
    startup nomount;
    restore controlfile from '/usr/local/oracle/backup/20100425/ctl_xxx'
    alter database mount;
    catalog start with '/usr/local/oracle/backup/20100425/';
    restore database;
    recover database;
    alter database open resetlogs;
    The second time, i found that rman restore the old backup data, which means that it restore the data file under '/usr/local/oracle/backup/20100418/' instead of '/usr/local/oracle/backup/20100425/'.
    So I run 'list backup of database summary' to see the backup set lists in control file.
    List of Backups
    ===============
    Key TY LV S Device Type Completion Time #Pieces #Copies Compressed Tag
    910 B 0 A DISK 18-APR-10 1 1 NO TAG20100418T020007
    945 B 0 A DISK 25-APR-10 1 1 NO TAG20100425T020007
    But when i run ‘restore database preview summary’ to see the backup set list to restore
    List of Backups
    ===============
    Key TY LV S Device Type Completion Time #Pieces #Copies Compressed Tag
    910 B 0 A DISK 18-APR-10 1 1 NO TAG20100418T020007
    there's no backup set 945 at all. that's why i could not restore data file under '/usr/local/oracle/backup/20100425/' at the second time.
    So, why two backup list is different ? how can i restore datafile under '/usr/local/oracle/backup/20100425/' ?
    My backup script is below:
    run{
    allocate channel c1 type disk;
    backup incremental level 0 as backupset format '$DIR/`date +%Y%m%d`/data_%d_c0_%T_%u' database;
    sql 'alter system archive log current';
    backup archivelog from time 'sysdate-14' format '$DIR/`date +%Y%m%d`/log_%d_%T_%u';
    backup current controlfile format '$DIR/`date +%Y%m%d`/ctl_%d_%T_%I_%u';
    release channel c1;
    Thanks
    Edited by: user13055376 on 2010-4-29 上午1:20

    yeah, I am sure Tag: TAG20100425T020007 exists
    RMAN> list backupset 945;
    List of Backup Sets
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    945 Incr 0 6.40G DISK 00:05:46 25-APR-10
    BP Key: 945 Status: AVAILABLE Compressed: NO Tag: TAG20100425T020007
    Piece Name: /usr/local/oracle/backup/20100425/data_QIANGL_c0_20100425_thlbvjt7
    List of Datafiles in backup set 945
    File LV Type Ckp SCN Ckp Time Name
    1 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/system01.dbf
    2 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/sysaux01.dbf
    3 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/undotbs01.dbf
    4 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/users01.dbf
    5 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/dict01.dbf
    6 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/support01.dbf
    7 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/supportindex01.dbf
    8 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/log01.dbf
    9 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/logindex01.dbf
    10 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/lobindex01.dbf
    11 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/data01.dbf
    12 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/indexes01.dbf
    13 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/image001.dbf
    14 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/tongbuimage001.dbf
    15 0 Incr 2498880165194 25-APR-10 /usr/local/oracle/oradata/qiangl/imagebackup001.dbf
    My purpose is to use the newest backupset of Server A to update Server B. So if Server A crush, Server B will be useful. Is there any other way to do that ?
    retention policy :'configure retention policy to redundancy 4'
    And Server A do LV0 backup every 7 day, and do LV1 backup ervery other day.
    Edited by: user13055376 on 2010-4-29 上午3:45

  • Duplicate an old RMAN backup set on Oracle 9.2.0.8 with no catalog

    Version: 9.2.0.8. We don't use an RMAN catalog
    Scenario: I need to duplicate a database to the same server with a different name so I can recover some old data. The restored backup set is about 20 days old
    and my RMAN retention is 1 day.
    Current date: 24 March 2011
    I try
    ./rman target sys/syspassword@pasdbt9i auxiliary /
    RMAN> duplicate target database to pastemp until time "to_date('04-MAR-2011 18:30:00','DD-MON-YYYY HH24:MI:SS')";
    Starting Duplicate Db at 24-MAR-11
    using target database controlfile instead of recovery catalog
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: sid=17 devtype=DI
    .using channel ORA_AUX_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 03/24/2011 12:00:11
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 13 found to restore
    RMAN-06023: no backup or copy of datafile 12 found to restore
    RMAN-06023: no backup or copy of datafile 11 found to restore
    RMAN-06023: no backup or copy of datafile 10 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
    I presume this is happening because the target database has a retention of one day and is unaware of this rman backup that is about 20 days old.
    If this is true, is there a way of telling the target database about this old backup set that I now want to duplicate?
    From 10g onwards you can catalog a backup piece which might be the fix for this??
    I've got round the problem by restoring the database to a different server, but would still like to know if the above is possible.
    Can anyone offer any suggestions? thanks.

    Hi C3PO,
    I presume this is happening because the target database has a retention of one day and is unaware of this rman backup that is about 20 days old?Correct the backupset metadata is nolonger available.
    From 10g onwards you can catalog a backup piece which might be the fix for this??In 9i you can catalog image copies.
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96565/rcmsynta11.htm#1005792
    Can anyone offer any suggestions?Another option would be setup a catalog and change the retention policy to 30 days and add extra diskspace.
    Regards,
    Tycho

  • Restore from Time Capsule backup set

    What is the procedure to recover the other paritions (multiple) which are backed up using time machine?
    I am using Time capsule to maintain automated backups of my Macbook Pro. Backups to the Time capsule are performing correctly and I can see "pink" breakpoints when I enter time machine which means the backup sets are available on my time capsule. I have 3 partitions on my MBP hard drive and all these drives are included in backups to be done.
    When I tried to recover my entire backup set to a new machine I was able to restore all the contents of my boot drive (mac os partition) but the data on other partitions is not recovered. I tried multiple times with different options to recover my data on other partitions but no success. What is the procedure to recover the other paritions which are backed up using time machine? Please refer the attachment to understand my partitions which are backed up but not restored?
    I really need help on this matter as I need to streamline restore process in my organization using time capsule.
    Thanks in advance.
    Kind Regards,
    Gurdev Singh

    Me.. oh no.. I would never be so foolish as to depend on TM to do any such things.
    Look at another Pondini reference.
    http://pondini.org/OSX/SetupOther.html
    As you have discovered what looks like a simple restore turns out to be nighmarish.. that is the nature of TM.

  • HT201317 my computer crashed and all my photos are gone. i need the last backup on photostream but it is over 30 days. is there anyway to contact apple to retrieve the photos?

    SOS
    photos gone unless there is some way to retrieve photostream over 30 days. please please tell there is.

    this seems like it might work for me. i just want to make sure i am doing things right. so, forgive me for my ignorance but i need to know what the difference is between the two backups. my iphone 5 was backed up today via itunes. i also have two older backups under my icloud account. i need to reset my iphone and erase all current content so i can restore info from one of the backups under my icloud
    account in hopes of finding some lost pictures. once i do that i would like my phone to return to the current state it is in restoring the backup i did today via itunes.
    i just don't want to mess up anything. so, i am asking what's the difference between an itunes backup and an icloud backup for iphone?

  • TS4062 I lost all of my contacts and notes when attempting to move over music. When I try to restore the backup the day I want to restore to is not present. I do see a copy on my I cloud but I can't seem to retrieve it. What can I do?

    I lost all of my contacts and notes when attempting to move over music. When I try to restore the backup the day I want to restore to is not present. I do see a copy on my I cloud but I can't seem to retrieve it. What can I do?

    Hi bluegrandpanash,
    Thanks for visiting Apple Support Communities.
    If you backed up your iPhone to iCloud before updating the software, first try the steps under "Restore from an iCloud backup" in this article to recover your data:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/HT1766
    Best Regards,
    Jeremy

  • My Verizon Cloud says "Content is pending for backup" and (Update pending), but it's been doing this for over a day now.  The number of photos hasn't changed and I have 26GB of space.  What's going on?

    My Verizon Cloud says "Content is pending for backup" and (Update pending), but it's been doing this for over a day now.  The number of photos hasn't changed and I have 26GB of space.  What's going on?

        Tinigal2112,
    We want to make sure your photos are backed up successfully! Have you tried to stop the process and start it again? You can stop the process by stopping the Cloud and backup process completely in Settings>Applications>All>Verizon Cloud>Force stop. One it has stopped make sure you care connected to WiFi and try the backup again.
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

  • TS3682 i have just recieved my replacement iphone after loosing mine over the weekend... i have backup set to my icloud for my ipad and iphone. on my ipad i can see my iphone was backedup on the 28/3/13 yet when setting up my new phone to restore it says

    why on my ipad can i see my phone was backed up a few days ago yet i cannot restore my new phone to this backup? i have had to do it from my itunes which i havent used since august last year this is most upsetting as i feel i am paying good money for a service that cannot work efficiantly b
    could someone please plaese plaese help me

    Go here and have gmail reset your password for you https://www.google.com/accounts/recovery?hl=en&ard=AHwGkRlOlFoSSn30aRkElH5hxKyJ_ l6MrQqe-_NzHPagCT6fnpemmiT6ovu2yt1gXx7f1TA49Hq_5mQistIP9Vv3BKawDDBoHO-A2ISCDxwx2 kCbiCFEcQ2guu2o_Yx0ayZFIfsTu6Cof3q4MTkie-fWpUj5GIjiCYnMGXh6fU6ts---KDJXghFBIXU2M hJM6YFyWR6NEFy5esIpYnm8JFt-WZlsu5W_Ow&service=mail
    They will send a reset to your current email address

  • Thunderbird erased many important, random emails from gmail and now they are not even on thunderbird. what do I do? It's been over 30 days.

    I wanted to print all the emails from a gmail label. My googling suggested that Thunderbird would do this. I didn't see any warnings about Gmail's stealth setting that it would ERASE me emails from the server, but it did. And now Thunderbird has no emails in it, leaving me with years of lost work and pictures. It has been over 30 days since this happened, as I didn't realize it had happen as, oddly, it didn't erase all of the emails, just some (likely because Thunderbird crashed every time I tried to use it and didn't do a full pull of my gmail e-mails, but kept telling me it was out of space which it was not as I have a huge drive).
    Does anyone have a suggestion regarding where I can find my e-mails? I tried to do a restore on my backup drive (where I had downloaded and used thunderbird) but it says there are no earlier versions. I am in the process of begging gmail to help me, but I don't know if they can.

    Well, the only thing you can do is go to Gmail in a web browser and hope your e-mails are still on the server. If they were deleted there, then there really isn't a way to get them back. :(

  • After,using,CS,for,one,year,I,must,have,an,activation,code,,the,trial,version,will,be,end, over,25,days.,How,is,it,possible?,What,can,I,do?

    After,using,CS,for,one,year,I,must,have,an,activation,code,,the,trial,version,will,be,end, over,25,days.,How,is,it,possible?,What,can,I,do?

    Was the iPad originally set up on a different computer, and hasn't been synced to the one that you are now trying to use ? There are some instructions on this page for syncing to a new computer : https://discussions.apple.com/docs/DOC-3141
    (Before trying that you could copy any important files/documents off the iPad so that you have you own backup copy of them e.g. depending upon what the apps support then email them to yourself, use Dropbox, copy them to your computer via your wifi-network.)
    You should be able to copy iTunes purchases off the iPad and over to that computer's iTunes via File > Devices  Transfer Purchases, but if you have music from other sources (e.g. copied from CDs) which aren't in that computer's iTunes (and you haven't got a backup to copy them onto it from) then there are some programs listed half-way down this page which should be able to copy them back : https://discussions.apple.com/docs/DOC-3991
    For recovery mode, that will result in your iPad being put back to factory defaults i.e. all of your content will be removed from it

  • Is there a way to only catalog backup set not in the catalog? "CATALOG START WITH" generates double entry.

    The DB version is 11.1.0.7.
    The "CATALOG START WITH" not only catalog backup set that are not in the RMAN catalog, but also catalog a second copy for files that are already in the catalog.
    Files are not a second copy; they are the same file in the same directory.
    Having two copies in the catalog, through an error when deleting explicitly the backups.
    We have to add the force clause to avoid the error.
    RMAN> delete FORCE backup tag 'offsite-1';
    The force clause ignores any I/O error.
    The delete is part of our scheduled offsite backup script, which returns a false positive error when the force clause is ommited.
    I don't want the force clause, in order to be notify if the backup set that are expected to be on disk are no more there, e.g., if someone had deleted files manually at the OS level bypassing rman.
    Is there a way to only catalog backup set not in the catalog?
    or May be remove the copy #2 entry from the catalog?
    Find bellow a test case example:
    RMAN> list backup summary TAG 'OFFSITE-1';
    List of Backups
    ===============
    Key     TY LV S Device Type Completion Time    #Pieces #Copies Compressed Tag
    12      B  F  A DISK        11-JUN-13 09:41:45 1       1       NO         OFFSITE-1
    13      B  F  A DISK        11-JUN-13 09:43:31 1       1       NO         OFFSITE-1
    14      B  A  A DISK        11-JUN-13 09:43:33 1       1       NO         OFFSITE-1
    15      B  F  A DISK        11-JUN-13 09:43:34 1       1       NO         OFFSITE-1
    RMAN> CATALOG START WITH 'C:\backups\offsite_disk\IBISdatabase\scheduled_offsite';
    searching for all files that match the pattern C:\backups\offsite_disk\IBISdatabase\scheduled_offsite
    cataloging done
    List of Cataloged Files
    =======================
    File Name: C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\scheduled_offsite\06OBTJEP_1_1
    File Name: C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\scheduled_offsite\07OBTJI3_1_1
    File Name: C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\scheduled_offsite\08OBTJI5_1_1
    File Name: C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\scheduled_offsite\09OBTJI6_1_1
    RMAN> list backup summary TAG 'OFFSITE-1';
    List of Backups
    ===============
    Key     TY LV S Device Type Completion Time    #Pieces #Copies Compressed Tag
    12      B  F  A DISK        11-JUN-13 09:41:45 1       2       NO         OFFSITE-1
    13      B  F  A DISK        11-JUN-13 09:43:31 1       2       NO         OFFSITE-1
    14      B  A  A DISK        11-JUN-13 09:43:33 1       2       NO         OFFSITE-1
    15      B  F  A DISK        11-JUN-13 09:43:34 1       2       NO         OFFSITE-1
    RMAN> DELETE BACKUP TAG 'OFFSITE-1';
    List of Backup Pieces
    BP Key  BS Key  Pc# Cp# Status      Device Type Piece Name
    24      18      1   1   AVAILABLE   DISK        C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\06OBTJEP_1_1   <<--- same file
    30      18      1   2   AVAILABLE   DISK        C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\06OBTJEP_1_1   <<--- same file
    25      19      1   1   AVAILABLE   DISK        C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\07OBTJI3_1_1
    31      19      1   2   AVAILABLE   DISK        C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\07OBTJI3_1_1
    26      20      1   1   AVAILABLE   DISK        C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\08OBTJI5_1_1
    32      20      1   2   AVAILABLE   DISK        C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\08OBTJI5_1_1
    27      21      1   1   AVAILABLE   DISK        C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\09OBTJI6_1_1
    33      21      1   2   AVAILABLE   DISK        C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\09OBTJI6_1_1
    deleted backup piece
    backup piece handle=C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\06OBTJEP_1_1 RECID=24 STAMP=821470356
    deleted backup piece
    backup piece handle=C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\07OBTJI3_1_1 RECID=25 STAMP=821470356
    deleted backup piece
    backup piece handle=C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\08OBTJI5_1_1 RECID=26 STAMP=821470356
    deleted backup piece
    backup piece handle=C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\09OBTJI6_1_1 RECID=27 STAMP=821470357
    Deleted 6 objects
    RMAN-06207: WARNING: 4 objects could not be deleted for DISK channel(s) due
    RMAN-06208:          to mismatched status.  Use CROSSCHECK command to fix status
    RMAN-06210: List of Mismatched objects
    RMAN-06211: ==========================
    RMAN-06212:   Object Type   Filename/Handle
    RMAN-06213: --------------- ---------------------------------------------------
    RMAN-06214: Backup Piece    C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\06OBTJEP_1_1
    RMAN-06214: Backup Piece    C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\07OBTJI3_1_1
    RMAN-06214: Backup Piece    C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\08OBTJI5_1_1
    RMAN-06214: Backup Piece    C:\BACKUPS\OFFSITE_DISK\IBISDATABASE\SCHEDULED_OFFSITE\09OBTJI6_1_1

    Hi JM,
    Your demo with Oracle 10.2.0.5
    At line 36 you answered "No" to "Do you really want to catalog the above files (enter YES or NO)?".
    Just repeate your demo and answer Yes.
    Even if he might have replied with "YES" then also, the RMAN search for the files which it can recognize as a valid rman backup file. Else it would show the list of files which are not recognized by RMAN as a valid file.
    RMAN> catalog start with '/home/oracle/scripts';
    using target database control file instead of recovery catalog
    searching for all files that match the pattern /home/oracle/scripts
    List of Files Unknown to the Database
    =====================================
    File Name: /home/oracle/scripts/RMAN_BACKUP.sh
    File Name: /home/oracle/scripts/rman_clone.log
    File Name: /home/oracle/scripts/Db_Refresh.sh
    File Name: /home/oracle/scripts/rman_erp.scr
    File Name: /home/oracle/scripts/RMAN_14FEB.log
    File Name: /home/oracle/scripts/nid.sh
    File Name: /home/oracle/scripts/Full_Clone.sh
    File Name: /home/oracle/scripts/rman_staging.scr
    Do you really want to catalog the above files (enter YES or NO)? yes
    cataloging files...
    no files cataloged
    List of Files Which Where Not Cataloged
    =======================================
    File Name: /home/oracle/scripts/RMAN_BACKUP.sh
      RMAN-07517: Reason: The file header is corrupted
    File Name: /home/oracle/scripts/rman_clone.log
      RMAN-07517: Reason: The file header is corrupted
    File Name: /home/oracle/scripts/Db_Refresh.sh
      RMAN-07517: Reason: The file header is corrupted
    File Name: /home/oracle/scripts/rman_erp.scr
      RMAN-07517: Reason: The file header is corrupted
    File Name: /home/oracle/scripts/RMAN_14FEB.log
      RMAN-07517: Reason: The file header is corrupted
    File Name: /home/oracle/scripts/nid.sh
      RMAN-07517: Reason: The file header is corrupted
    File Name: /home/oracle/scripts/Full_Clone.sh
      RMAN-07517: Reason: The file header is corrupted
    File Name: /home/oracle/scripts/rman_staging.scr
      RMAN-07517: Reason: The file header is corrupted
    About the RMAN catalog, it will not catalog the same file twice. It will only catalog the files which are not known to the database.
    See this demo. (/backup/RMAN/STAGING/ is the location where all the backup pieces are.)
    RMAN> catalog start with '/backup/RMAN/STAGING/';
    searching for all files that match the pattern /backup/RMAN/STAGING/
    no files found to be unknown to the database
    This was the location based test, Another demo showing piece by piece catalogging .
    RMAN> list backuppiece '/backup/RMAN/STAGING/ERP_CNTRL_c-13949842-20130724-00';
    List of Backup Pieces
    BP Key  BS Key  Pc# Cp# Status      Device Type Piece Name
    1323    1321    1   1   AVAILABLE   DISK        /backup/RMAN/STAGING/ERP_CNTRL_c-13949842-20130724-00
    RMAN> catalog backuppiece '/backup/RMAN/STAGING/ERP_CNTRL_c-13949842-20130724-00';
    cataloged backup piece
    backup piece handle=/backup/RMAN/STAGING/ERP_CNTRL_c-13949842-20130724-00 RECID=1324 STAMP=821717283
    RMAN> list backuppiece '/backup/RMAN/STAGING/ERP_CNTRL_c-13949842-20130724-00';
    List of Backup Pieces
    BP Key  BS Key  Pc# Cp# Status      Device Type Piece Name
    1324    1321    1   1   AVAILABLE   DISK        /backup/RMAN/STAGING/ERP_CNTRL_c-13949842-20130724-00
    Hope its understandable, if any query please revert.
    Happy to Help.
    Thanks and Regards,
    Prashant

  • Nokia Lumia 928 apparently died after an attempted Windows 8.1 update.  Replacement phone arrived the next day.  How can I restore my contacts, photos, etc.?  Backup assistant is no help and I don't know how to access the Cloud.

    Nokia Lumia 928 apparently died after an attempted Windows 8.1 update.  Replacement phone arrived the next day.  How can I restore my contacts, photos, etc.?  Backup assistant is no help and I don't know how to access the Cloud.

    Did you have the phone set to backup things to the One Drive on Microsoft servers?

  • Please, the battery of my mac air does not last more than two hours, it's been over 30 days I sent for technical assistance and nothing! I am very disappointed with the mac air, I had a very different expectation of apples products!!

    Please, the battery of my mac air does not last more than two hours, it's been over 30 days I sent for technical assistance and nothing! I am very disappointed with the mac air, I had a very different expectation of apples products!!!

    Maybe the problem is not your MB Air......
    Try these:
    Make sure bluetooth is turned off if you're not using it.
    Set your screen brightness to 4 bars.
    See what's loading in your login items.  Delete the ones you don't need.
    Open Activity Monitor - under All Processes see what's using most of your CPU's resources.
    Highlight the ones with the highest %CPU and hit quit process.
    Remember that when Apple says that your battery should last 7 hours, they tested it just browsing the web and not have anything open in the background and screen is set at 50% brightness.

Maybe you are looking for

  • Change Apple ID for iPod Touch

    I have an iPhone 5 and an iPod Touch having the same Apple ID.  I want to change the Apple ID on the iPod but don't want to lose the Apps.  Can anyone help me?  I am new to Apple products.

  • Smartform Dynamic Page Format

    hi IS IT POSSIBLE TO HAVE DYNAMIC PAGE FORMAT IN SMARTFROMS. EXAMPLE: DEPENDING ON ONE CONDITION I NEED TO PRINT THE PAGE EITHER IN LANDSCAPE OR PORTRAIT. PLEASE HELP ME. THANKS IN ADVANCE. KIRAN.

  • SEM CPM - Link a Query in Web Mode

    Hi all, Im working with SEM-CPM ; i can't add a link to a query in web mode ; i have tried this : 1)Add URL ; works fine but i cannot add the URL dinamycally in order to take the local server ; for example when i transport to QAS then links points to

  • When we create a queue how many files get created???

    Hi All,           When we create a resource suppose a queue then how many files get created or modified from that action internally??           Thanks in advance           Sumeet

  • Alien Skin works like a dream?

    Ive been using Photoshop CS6 since the second beta I am now on the latest and can not believe how fast it is, I have been using it instead of CS5.5 and not crashed, not used to much memory nothing.. This is by far the best upgrade for a long while. I