Backing up ASM/FRA to disk via RMAN

Our 9i RAC systems were built using Veritas SFRAC. Due to an archaic tape infrastructure, we had to stream our backups to disk, then allow a nightly O/S backup job come along and backup it up to tape. We were not allowed to directly stream any backups to tape.
We are now in the process of building 10g RAC systems with Solaris 10, using ASM/Clusterware, and no 3rd party clustered file system.
My question is: if we define a FRA in ASM and stream RMAN backups there, how can I backup this area to disk so that the nightly O/S job can put it to tape. Likewise, if I have to recover and go to tape to pull an older backup, how do I restore a backup to the FRA so I can perform a restore (if it can be done)?
In other words, I still cannot directly stream to tape from the ASM FRA - I must first put it out to disk. Is this possible?
Thanks,
Jeff

AFAIK, the FRA/ASM can only be backed up to the
tape.This is correct. The FRA was created to be your on-disk backup location so that N days/copies of your backups stick around ( RMAN> CONFIGURE RETENTION POLICY TO [RECOVERY WINDOW x | REDUNDANCY x] ) to be readily available. So in RMAN's view, to backup the FRA to disk, again, would not make sense. So the only way to back it up is to a Tertiary device (tape) only.
HTH,
Layton

Similar Messages

  • Migrate entire database to ASM on another server via RMAN minimal downtime

    Hi
    I was looking for a procedure to migrate non ASM production databases to ASM via RMAN on a separate server with minimal downtime (backup as copy/switch database to copy technique). We have TDPO for tape backup and I normally rman clone test databases between servers but this involves too much downtime for production. The procedure in the ASM Admin Guide (Chapter 8) assumes the databases are on the same server.
    Thanks
    Tom Cullen

    tcullen wrote:
    Hi
    I was looking for a procedure to migrate non ASM production databases to ASM via RMAN on a separate server with minimal downtime (backup as copy/switch database to copy technique). We have TDPO for tape backup and I normally rman clone test databases between servers but this involves too much downtime for production. The procedure in the ASM Admin Guide (Chapter 8) assumes the databases are on the same server.
    Thanks
    Tom CullenDear Tom. Why you think you'll have downtime in the production database? The database will be running while the clone will be processing. Check the following link:
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmdupdb.htm#BGBDCDGJ
    RMAN DUPLICATE DATABASE From ASM to ASM: Example
    Kamran Agayev A.
    Oracle ACE
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

  • New Oracle DBA - Need help with backup & restore procedure via RMAN

    Hello everyone,
    I've been a SQL Server DBA for 12 years now, but new to the Oracle space. My first assignment at work was to refresh our training environment with production. So with that said, I took a full backup of our production database via RMAN and backed up the Control File. I then copied both the Control File and full backup from our production environment to training. I followed the procedures listed in the URL below:
    http://www.dba-oracle.com/t_rman_clone+copy_database.htm
    I then connected to RMAN and executed a 'show all' which is as follows:
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    The CONFIGURE CONTROLFILE AUTOBACKUP was set to ON but received a message that the database needed to be mounted, so, I mounted the database and made the changes, but when I shutdown the database and performed the startup nomount again, the settings were gone. Are these settings valid only when the database is mounted? How can I successfully refresh this training environment with production data? I'm at a standstill here so any help would be very much appreciated.
    Thank you,
    Pete

    The CONFIGURE CONTROLFILE AUTOBACKUP was set to ON but received a message that the database needed to be mounted, so, I mounted the database and made the changes, but when I shutdown the database and performed the startup nomount again, the settings were gone. These settings are persistent settings.So these information retain in control files.To reading information from control files database instance must be MOUNT or OPEN stage.Due to you have mount instance and try SHOW ALL command through RMAN.
    Are these settings valid only when the database is mounted? Not only MOUNT also OPEN stage.
    How can I successfully refresh this training environment with production data? I'm at a standstill here so any help would be very much appreciated.
    There are several ways like duplication.But you take full backup from production database using BACKUP DATABASE through rman.In this case you will get also AUTOBACKUP for controlfiles/spfiles.Then copy these backup files and all available archive logs to training server and perform below steps.
    1) You have set properly ORACLE_HOME and ORACLE_SID environment variable.After that first need restore spfile as
    rman target /
    startup force nomount;
    restore spfile from 'autobackup_location';
    startup force nomount;2) Now you have to restore controlfiie as
      rman>restore controlfile from  'autobackup_location';
    rman>alter database mount;
      3) Now need catalog(it means register) all backup files and archivelogs in new restored controlfile as
       rman>catalog start with 'backuplocation';
       4) Finally you can restore and recover your database as below
       rman>restore database;
    rman>recover database;
    rman>alter database open resetlogs;
       If you want restore database to new location then before executing RESTORE DATABASE command you can use SET NEWNAME FOR DATAFILE clause.Firstly refer backup recovery guide in online documentation.

  • Duplicating a db to another host via rman

    I found a few documents on this topic, but didn't resolve my issue.
    I am trying to restore an RMAN backup to a different host
    (with same instance name, different path) from where the backup was taken.
    And while running it gives the following error:
    ORA-19505: failed to identify file "D:\ORACLE\BACKUP\TRACKER_20050920_FULL.S148P1"
    ORA-27041: unable to open file
    ORA-04002 unable to open file
    O/S-Error : (OS 21) device not ready
    Here D: drive is where I backup via rman ervery day.
    If any of you had come across this problem and had a solution to this, could you please share it with me.
    Thanks
    P.S. I'm able to connect to catalog, target and auxiliary.
    Charlie

    run on host B:
    step 1. create auxiliary instance and connect to auxiliary instance in nomount mode
            SQL> connect sys/syspw@aux as sysdba
            Connected to an idle instance.
            SQL>startup nomount pfile='C:\oracle\admin\tracker\scripts\initauxdb.ora'
    run on host A:
    step 2. RMAN> connect catalog rman/rmanpw@rman
            RMAN> connect target sys/syspw@target
            RMAN> connect auxiliary sys/syspw@aux
    step 3. RMAN> run
            RMAN> {
            RMAN>    ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
            RMAN>    DUPLICATE TARGET DATABASE TO "auxdb"
            RMAN>    PFILE='D:\oracle\admin\tracker\scripts\initauxdb.ora';
            RMAN> }
            ORA-19505: failed to identify file "D:\ORACLE\BACKUP\TRACKER_20050920_FULL.S148P1"
            ORA-27041: unable to open file
            ORA-04002: unable to open file
            O/S-Error: (OS 21) device not readyAfter made whole backup of primary db to drive C on host A,
    and redo step 2 and step 3.
    The error messages as the same as step 3.
    There's my backup script:
    RMAN>run
    RMAN>{
    RMAN>  shutdown immediate;
    RMAN>  startup mount;
    RMAN>  ALLOCATE CHANNEL bck2disk1 DEVICE TYPE DISK;
    RMAN>  BACKUP DATABASE FORMAT 'C:\oracle\backup\%d_%T_Full.S%sP%p';
    RMAN>  sql "alter database open";
    RMAN>  Release Channel bck2disk1;
    RMAN>}Thanks a lot
    Charlie

  • I converted from a PC to a Mac Mini.  I have my PC documents backed up on a DVD disk.  I have an external DVD drive connected to the Mac Mini.  I want to open them up and save them to the Mac, BUT....when I put the DVD disk in the Mac is NOT reading it!

    I converted from a PC to a Mac Mini.  I have my PC documents backed up on a DVD disk.  I have an external DVD drive connected to the Mac Mini.  I want to open these documents up from the DVD storage and save them to the Mac, BUT....when I put the DVD disk in the Mac is NOT reading it!

    Hi Joe,
    Thanks for your quick response.  I should add....it worked before.  When I previously inserted the two DVDs into this remote drive, and I went into finder, I could click on the "remote device" line and see all my saved documents (excel, word, etc) on the DVD and open them on the Mac.  Now I cannot see them, when I try to open them on the Mac, nothing happens, nothing is displayed.  I just re-tested the remote DVD drive with a CD and, no problem, it opened up the CD via iTunes and I cold play the CD.  SO......I know the remote DVD drive (it's an LG by the way) is fine, it's something to do with some settings on my mini mac,especially where I could open it previously.  I do not remember changing any settings since then. 
    When I go into system preferences and click on CD/DVD it gives me options of how to open up a music CD (default is iTunes), a DVD (default is iMovie), etc.  The problem is my DVD is all miscellaneious files/documents.  I just want to be able to see them in the finder.  I also tried to open them via microsoft word, from the remote disk and again, it could not open the drive, even though some of the documents were microsoft word documents.  Again, I was able to open them previously and the DVD is not corrupted in any way.  
    Any additional advice? 
    Thank you!

  • How do I put recovery files back into ASM?

    I'm trying to recover a database for testing. I have all the backup files in a directory. I've restored the controlfile.
    When I run the restore, the error is:
    RMAN-03002: failure of restore command at 10/21/2009 19:24:52
    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
    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'm guessing that I either need to tell rman where to find the files or put the files back into the ASM +FLASHBACK.
    So 1) How do I tell rman that the files are now in a directory
    or 2) How do I put the files back into ASM?
    Thanks - JR

    I restored the control file with the rman "RESTORE CONTROLFILE FROM 'filenamegoeshere'; It was the control file backup from the corresponding DB backup.
    I couldn't use the RESTORE CONTROLFILE FROM AUTOBACKUP because it was expecting the backup files to be in the ASM +FLASHBACK.
    The catalog lists all the files that I have, but it thinks they are in ASM.
    Thanks - JR

  • Brarchive to disk with RMAN

    Hello.
    I'm using rman_util for doing brarchive. For testing reasons, I need to make brarchive to disk, so I changed the initSID.sap setting
    backup_dev_type = rman_disk
    When running the brarchive i see that the init.sap, init.utl and init.ora files are backed up into the destination folder, but the archived logs seem to be addressed to the tape. Infact the generated cmd file says:
    run { allocate channel sbt_1 device type 'SBT_TAPE'
    parms 'allocate channel Channel1 type disk,allocate channel Channel2 type disk';
    allocate channel sbt_2 device type 'SBT_TAPE'
    parms 'allocate channel Channel1 type disk,allocate channel Channel2 type disk';
    backup tag adwvjshx format 'AMP1_adwvjshx.%s_%p' filesperset 7 check logical
    archivelog from sequence 15244 until sequence 15356 thread 1
    archivelog from sequence 3689 until sequence 3744 thread 2;
    release channel sbt_1;
    release channel sbt_2; }
    list backup of archivelog from sequence 15244 until sequence 15356 thread 1 tag adwvjshx;
    list backup of archivelog from sequence 3689 until sequence 3744 thread 2 tag adwvjshx;
    So the SBT_TAPE channel is allocated.
    I would like to know if this is the expected behaviour using the rman_disk or there is some additional parameter that I should set.
    In alternative I also tried to use
    backup_dev_type = disk
    disk_copy_cmd = rman
    But in this case the archived logs straight are copied to the destination, i.e., the typical backup files are not created.
    Thanks in advance for any help.
         Dino

    Not that I tried that,
    but "-ssd" works when two tape drives are given!
    May be if you specifiy both archive target dirs, "-ssd" will work for "disk" as well.
    Volker

  • I just got an iPhone 5 32GB and i have backed up my old 3GS 32GB via itunes (20GB of data on there) and it is taking a very long time to restore to my iPhone5. Its taken more than 20 hours and says 12 hours remaining. The text "Time remaining" flickers.

    I just got an iPhone 5 32GB and i have backed up my old 3GS 32GB via itunes (20GB of data on there) and it is taking a very long time to restore to my iPhone5. Its taken more than 20 hours and didnt complete.
    The text "Time remaining ... hours" flickers.
    I set it to start restoring from the 3GS backup yesterday at 1pm and the time remaining kept on increasing. I left it overnight and at 9am this morning the progress bar hadnt moved and it said 12 hours remaining.
    I don't know why its taking so long. I unplugged it and it just set up as new phone. So i did a factory reset and tried again at 4pm and it is now 12am and it says 4 hours remaining and my computer occasionally flickers. (Its not a bad computer, 2 months old, i7, 6GB RAM, Heaps of HDD space). It also messes with google chrome and i cannot browse the web at all while it is trying to restore my iphone.
    I have tried restarting my laptop and should i reinstall itunes? I simply dont see why it should take longer than 20 hours to copy over 20GB of data!
    Can anyone help me?
    Thank you

    I'm having this EXACT same problem with my iPhone 4, and I have the same computer stats (I have a Samsung Series 7)

  • HT3275 For the past several days, I have been getting this message during backups: Time Machine could not complete the back up.  The backup disk image "Volumes/Data/iMac.sparsebundle" could not be accessed (error-1).

    For the past several days, I have been getting this message during backups:
    Time Machine could not complete the back up.  The backup disk image "Volumes/Data/bhoppy2's iMac.sparsebundle" could not be accessed (error-1).  When I click on the 'help' icon on the message, it reverts to a blank page, and I cannot find anything online regarding the term 'sparsebundle.'  In addition, I cannot access previous backups any longer. 
    Help?

    See C17 in Time Machine Troubleshooting by Time Machine guru Pondini:
    http://pondini.org/TM/Troubleshooting.html

  • I am using a macbook pro with system 10.6.8. I just discovered that no recent files have been backed up to the external disk using Time Capsule.  There is a long list of backups including most recent but no recent files, for some weeks, have been backed u

    I am using a macbook pro with system 10.6.8. I just discovered that no recent files have been backed up to the external disk using Time Capsule.  There is a long list of backups including most recent but no recent files, for some weeks, have been backed up.  I did a full reset of Time Machine.  I disconnected the external drive and reconnected it. It is not a matter of file types, no files and no folders have gotten backed up.  Everything looks normal though unless one goes hunting for recent files on the back up.

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Time machine fails backing up with a "backup disk not found" error after upgrade to Lion 10.7.2

    Time machine fails backing up with a "backup disk not found" error after upgrade to Lion 10.7.2. I've erased and reformatted the drive; reconnected Time Machine(it saw it) and began a new backup. The backup starts again but fails before completing with backup drive not found error. I used the 10.7.2 combo update. Any help on how to fix this problem would be appreciated.

    Arghhhhhhhhhhhhhhhhhhh!!!!!!
    After waiting since October for a fix, I have now upgraded the firmware on the Time Capsule and installed the new Airport Utility, released yesterday, and the situation is even worse.
    Up until now, the Airport Utility had an option to disconnect all drives manually and the Time Capsule would then work until the next reboot – a temporary (?) work-around.
    Now that option does not exist in the new-look Airport Utility. And the Airport Utility installation can’t be rolled back and the old utility won’t restore.
    The sparesbundle is still not accessible. Anyone worked out a work-around in the new environment yet?
    I have another Time Machine backup working fine to a trusty old Lacie Drive so erased the one on my Time Capsule to see if that works. I have renamed the Capsule and the Time Capsule Drive.  But to build another full backup will take at least two days and I shall be away from tomorrow and am reluctant to leave the Capsule and computer up and running for a week. And I’ll bet the sparsbundle will still be nowhere to be found.
    How can Apple screw up so badly when they are to become the richest company in the entire world and – soon – will have more cash in the bank than the entire United States? Can’t they afford someone who really can sort this out? Especially when a Firewire connected hard drive – my trusty and simple LaCie – works fine.
    Words, almost, fail me.

  • Access local disk via Java Web Start??

    HI all ,
    I had saw the JWS document.
    It indicate we can't access local disk via JWS in that Security.
    If I need to access local disk by command, does anyone have better suggestion.
    And can I run *.bat via Java Web Start?
    Thanks very much for your help.
    Morris

    I do the both thing but still don't access to Local disk.
    I just write a simple test class within extend another that create a file (and of course sign it)but still can't create a file Local disk. this MAKE ME MAD and LOOSE MY JOB .
    here is my JNLP file:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for Pensionsrechner -->
    <jnlp
    spec="1.0+"
    codebase="file:///d:/"
    href="test.jnlp">
    <information>
    <title>Me</title>
    <vendor>myself</vendor>
    <homepage href="http://www.me.com"/>
    <description> test test test</description>
    <description kind="short">Test creatin of log file on client </description>
    </information>
    <offline-allowed/>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.4"/>
    <jar href="test2.jar"/>
    </resources>
    <application-desc main-class="secMan.Test"/>
    </jnlp>

  • TS4036 Hi, I have recently upgraded from and Iphone 4 to 5.  I completed a back up on my iphone 4 via icloud which went ok.  When setting up my new phone I selected to set up as a new phone and not via icloud back up.  Is there anyway I can restore my det

    Hi, I have recently upgraded from and Iphone 4 to 5.  I completed a back up on my iphone 4 via icloud which went ok.  When setting up my new phone I selected to set up as a new phone and not via icloud back up.  Is there anyway I can restore my details to my new phone?  Thanks Hayley

    Welcome to the Apple Community.
    Navigate to Settings > General > Software Update and install any updates available.
    Navigate to Settings > General > Reset > Erase all contents and settings on the device you want to restore.
    When this completes and the Set-Up Assistant starts, choose "Restore from iCloud Backup" and enter your iCloud account and password. You will see the three most recent backups for each of the devices on which you enabled Backup. Choose which backup to restore from.

  • My 2nd generation Time Capsule won't back up because the backup disk is full??

    My 2nd generation Time Capsule-Machine won't back up because the backup disk is full. Ever since the latest OS software update I am not able to erase my time capsule and start over. I use to be able to go into the settings on my Mac and erase it and start over, but not anymore. What can I do? Is there a way to free up space so I can do backups again? I keep getting a notice saying that my backup disk is full and there is not enough space to to a backup for all 3 of my Macs. Any suggestions would help!!! Thanks

    The airport utility should still allow you to erase the drive of the TC.. that means a full wipe.. if you want to keep anything from the old backups you should archive it first.. that option was removed on the v6 utility but if any of your computers still runs Lion or earlier you can download 5.6 airport utility or use the inbuilt one.
    In mountain lion you cannot install the 5.6 utility but there are ways and means of getting around that.. it does work.. it is relatively easy to unpack the utility and extract the file and just drag it to the utility directory.

  • How to improve the speed for backing up files to time capsule via in hose wifi?

    How to improve the speed for backing up files to time capsule via in hose wifi?

    via in hose wifi?
    Use a bigger hose??
    House??
    Need to spell this out a bit more..
    But speed via 2.4ghz to the TC is restricted by Apple to max 130mbps link speed.. much slower actual transfer.. latest TC and laptops can do 450mbps on 5ghz but you need to be up close.. so place the TC near the device using it.. and force 5ghz connection by using a different name for 5ghz network.

Maybe you are looking for

  • Custom kernel 2.6.31- iwl3945 module won't compile

    hi i've got a Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02) but its not possible to select the needed module iwl3945 in the config inserting... CONFIG_IWLWIFI=m CONFIG_IWLWIFI_LEDS=y CONFIG_IWLWIFI_SPE

  • SCAN IP

    Hello I have install a 2 nodes RAC 11gR2 with ASM on AIX 6.1 I am not using gns so i install using hosts files (problem with netwok admin) IP configuration : Node     IP     defined name Aix_rac1     192.168.100.180     aix_rac1 Aix_rac1     172.16.2

  • Locked out of Macbook Pro w/ Retina

    I just bought my Macbook Pro with the Retina screen and I was moving my stuff from my imac to my macbook using Migration Assistant and I clicked continue before the estimate was reached for how much memory everything would take so It went on to move

  • Good book for SOAP

    Hello Guys, Can you suggest good book for SOAP with Java. (for beginners) Thanks,

  • Download Assistant Freezes After Sign in. Windows 8

    I got a new computer this week (unfirtunately) with windows 8. When I first download the download assistant and signed in. It worked and I was able to download the trials. However it failed to install because I did not have "space". My computer is pr