Backup and restore to the other database with Recovery Catalog

Dear All,
i need your help about recovery catalog.
I have 3 databases, 2 databases version are 8.1.7.3 (HostA and HostB) and other database is 9.2.0.6 (as Catalog Database)
I want to backup files from HostA with Catalog Database into tape, then restore the backup files into HostB.
Please suggest me how to do this.
Best Regards,
abip

you can achieve this with the rman duplicate command.
if you have the same directory structure then it is a relatively simple task, if the directory structure is different then you need to use the
'set newname' syntax.
regards
Alan

Similar Messages

  • HT4528 My apps store will not go online with verizon network, but on wifi it works. I am on an iphone 4, verizon.  I tried to do a complete, backup and restore on the phone 1 day before i noticed this problem,  The backup finished the RESTORE would fail c

    My apps store will not go online with verizon network, but on wifi it works. I am on an iphone 4, verizon.  I tried to do a complete, backup and restore on the phone 1 day before i noticed this problem,  The backup finished but the RESTORE would fail I had an error, could not access Apple server ( some server name I cant remember).
    I have plenty of space available on the iphone,
    8gb free,
    ios version- 6.1.3 ( 10B329)
    carrier - Verizon 14.0
    Modem Firmware - 3.0.04
    Can someone help.
    I tried doing my backup restore on the same computer as I once did a year ago. and THis time I cant do the restore on the iphone.
    computer osx is 10.5.8
    itunes version 10.
    I do not wish to go to ios 7 at this time.

    Settings > General > Reset > Reset Network Settings.
    Basic troubleshooting is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    If the issue continues, contact the carrier to troubleshoot the network connectivity issues.

  • How do i backup my iphone 3 started on one itunes account and restore to the same phone with a different itunes account without losing all my information?

    how do i backup my iphone 3 started on one itunes account and restore to the same phone with a different itunes account without losing all my information?

    Please search the forums. This has been covered here extensively.

  • HT1414 Ipod Touch can't find Bluetooth device. (Jam Box)  Upgraded Itunes software did a backup and restore on the Ipod.  My PC sees it fine.  IPod used to work with JamBox.  Reset Jambox, no luck. Followed every instruction from the forums. Still no luck

    Ipod Touch can't find Bluetooth device. (Jam Box) 
    Upgraded Itunes software did a backup and restore on the Ipod.
    My PC sees Jam Box fine.  IPod used to work with JamBox.  Reset Jambox, no luck.
    Followed every instruction from the forums. Still no luck.
    Reset Jam Box to factory settings. 

    Did a network reset on the Ipod after the backup and restore.  No luck

  • I have two iMac's on the same desk. Once iMac pairs with both keyboards and mice.  The other pairs with the mouse, but I cannot get the keyboard to connect.  How do I get a keyboard and mouse to connect to each iMac independently?

    I have two iMac's on the same desk (about a foot apart). One iMac pairs with both keyboards and mice.  The other pairs with the mouse only; I cannot get the keyboard to connect.  How do I get a keyboard and mouse to connect to each iMac independently?

    Antaeus00 wrote:
    I tried sending a request for help,
    But did you succeeed in sending a request for help?
    Did you receive a response? How long has it been since you sent a request?
    but I need someone with more authority to talk to.
    There is no one with more authority than iTunes store support. We herem are only users.

  • Windows 8 full system backup and restore to new laptop (system with 32GB mSata Cache)?

    Hi, I have a new Envy DV7-7205 which has 2TB storage with 32GB HDD Cache (or mSata, not really sure how it's implemented). I need to return the laptop as it's faulty but I would like to startup on the replacement exactly where I left off.
    Are there any special methods required to backup and restore the system image from the old laptop to the new one, particularly with consideration to the 32GB SSD cache, as this doesn;t seem to appear as a distinct "drive" on the system.
    Please can anybody advise the simplest, safest method to move my entire system from old to the new laptops (should be exactly the same spec machine).
    Many thanks,
    Greg
    HP Envy DV7-7205tx, 2x1TB HDD, 32GB mSata Cache, Windows 8 Pro

    Hi,
    Firstly I don't know how this is going to work on new machine because the Windows 8 lisence would NOT work at all.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Algorithm for online backup and restore of the entire grid

    Hello!
    I am trying to write a utility program that backs up the entire grid data to a binary file and restores it at a later point in time. Assuming that the class files are not updated, I am using the following simple logic
    1. Use the cluster and CacheService APIs, get the names of all named caches of types replicated, distributed and optimistic
    2. Iterate through each named cache and use ExternalizableHelper.writeMap method to extract the data as byte arrays
    3. Create a custom datagrid object holding a map of byte arrays by names
    4. Write the custom object to a persistent storage
    Similar logic to restore the data grid from the custom object on the disk.
    I have the following questions
    1. I am sure the above logic is not going to recreate the entire datagrid in the exact state it was backed up. For e.g. if I used write-behind, I must either flush or backup the write-behind queue. What other objects should
    I consider backing up other than the data from the named caches? If I used the incubator patterns, I am guessing I need to backup the command objects and functor objects.
    2. I do not have a need for other cache services now. If I need to use the same utility across different grid configurations, what other services should I include for the back up (overflow, external, paged external) ?
    3. Are there best practices for such use cases? Any insights you can provide to enhancing this utility would be much appreciated.
    Thank you
    Regards,
    Sairam

    Hi Sairam,
    If you want a non-intrusive solution then you cannot really use cache stores, as these would certainly intrude into the cluster. Cache stores would also not really be an option if the cluster already used another type of cache store - unless you write some sort of multiplexing cache store.
    If your backup/restore solution needs to be a "client" (optionally over Extend) then you have two choices:
    1. Build something that is run whenever you want to do a backup - this would usually be an Extend client application. This application would then read data out of the caches and write it to disk. With this option a backup might take a while if the cluster is large but running the backup is pretty easy.
    2. Build something that is permanently connected to the cluster being backed up and uses Map listeners to listen for inserts and updates and stores the data to disk. This application could be either an Extend client or a storage disabled cluster member. With this option your cluster is always backed up in real time but you have the overhead of another process to manage.
    If all your caches use POF serialisation then either of the above options could be written to just store the POF binary without having to deserialize it and could then be "bolted on" to any cluster. Re-loading stored binaries would need a bit of thinking about although a couple of options come to mind. If you just worked with the binary you might not need to worry about you backup application needing the pof-config of the cluster.
    You backup application would need to either be told which caches to back up or be able to dynamically figure out what caches had been created. You cannot always do this from the cache config file if the cache names in the mappings section use wild card names.
    As you can see there is lots to think about if you want to build something truly non-intrusive.
    JK

  • I have 2 auxillary disk drives for my MacBokk Pro. Time Machine uses one for backup and I use the other for storage, but I am unable to create a new folder or drag and drop files or folders to the aux drive.

    I am unable to create a new folder on either of my auxillary disk drives.  I can access the files and folders that were there when I transferred one of the drives from a PC.  Time machine uses one for backup and I want to use the other to store photos which are large files.  An help would be appreciated.

    Thanks for the reply.  If I reformat the drive will I be able to access the files on it from the MAC.  I do not share the drive with a PC.  The files were originally created on a PC which I no longer use.  I do want to continue to access the files put there by the PC.  I would like to not have to copy them over to the MAC hard drive just to use them.  The second aux drive is new and works fine because it was formatted by the MAC.  I can drag and drop files there and work with just as if they were on the internal drive.

  • XI System backup and restore for the JAVA Stack

    Hello experts
    I am few queries regarding backup of XI System.
    1- What is the procedure to backup the XI System on AIX OS?
    2- Should I backup the J2EE Engine also with Jload and Java migration toolkit, when I backup the XI System?
    3- If XI system crashes, what is the procedure to restore XI system from backup?
    4- Do I have to restore the J2EE Engine also from backup with XI with the help of Jload and Java migration toolkit. If so, what is the procedure on AIX OS?
    5- If I take a backup of XI system, after 3 days the server crashes. When I restore the backup, how should I recover the lost messages of 3 days?
    Kindly help me out with these issues. If anybody has any documents, kindly email me at [email protected] Points will be rewarded for any kind of help. Thanks a ton in advance.

    Hi Bipin,
    This blog contains very little info. It says zip the XI files and extract the compressed zip files. Also it talks about backup of registry.
    I am on AIX OS. How can I backup the registry in AIX? Also how should I zip all the files and extract those compressed files during restore. Is there any SAP utility to do that. Kindly let me know.

  • Restore Backup made with Backup and Restore W7 x64

    Hi ....
    Im really looking for some help here...
    I had my laptop stolen and my now trying to recover a 2013 Backup Image made with a Windows tool called Backup and Restore.
    The backup was made with a W7 SP1 64bit using Windows own Backup/Restore utility to create a system image on an external HDD connected by USB port. 
    The application saved the image into a folder called WindowsImageBackup. Inside this folders there are 2 *.VHD file
    So as my laptop was Stolen, im trying to recover this old Backup and save my files again.
    I would like to restore that previous Image. These are the steps I took:
    1) Plugged in the HDD.
    2) I went to Control Panel->Backup and Restore.
    3) I selected 'Select another backup to restore files from'.
    4) In the Restore Files (Advanced) dialogue, my backup isn't showing into the box, because its on my external drive, so i choose browse network location
    5) I clicked 'browse network location' button, and it takes me to another restore files (advanced) dialogue that asks for network folder path.  I tried to locate my external HD, without success. So i tried Search Network. As i also have a copy of my
    backup on my NAS, i tried to inform the network IP path, but it didnt locate the backup either. I get the error that windows was not able to find any backup sets in that directory. 
    6) As the step 5 resulted in nothing, i tried the option: Recover system settings or Computer. And then Advanced recovery methods. And finally use previously system image to recover computer. And then Windows asks to reboot the computer and once rebooted
    it starts on recovery mode where it cant find my backup image either.
    So, how can i recover my backup?
    I saw that the Backup created 2 VHD files and also tried to mount the VHD using Disk Management and attaching the VHD. The VHD mounted as drive and i could finally see my files, but most of them are corrupted. So i dont know if im doing something wrong when
    attaching the VHD.
    Can anyone help me please? I dont know what else to try.
    Thanks a lot
    Flavio.

    Hi,
    If you mean that you want to restore an system image in a different computer, then I have to say that it will not work.
    Please see the statement in KB 249694,
    we do not support restoring a system state backup from one computer to a second computer of a different make, model, or hardware configuration.
    http://support.microsoft.com/kb/249694/en-us
    How to restore a  Windows installation or move it to different hardware
    Yolanda Zhu
    TechNet Community Support

  • RMAN archive logs backup and restore in RAC environment.

    Hello All,
    I have a 8 node RAC using ASM production database and a single node standby database using ASM. I have archive log gap on the standby database and the archive logs on the primary database is backed up and removed.
    I need to resync the standby database using RMAN backup/restore.
    Could you please help me on how to backup the specific archive logs file (all threads) from production and restore/recover the standby database. Any specific RMAN script or Metalink ID will help alot.
    Details:
    Source: 8 node RAC, ASM, Linux,
    target: Non-RAC, ASM, Linux.
    Regards,

    You can try LIKE clause of BACKUP ARCHIVELOG such as:
    RMAN> backup archivelog like '%XE%2010%20%';
    Starting backup at 20-AUG-10
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting archive log backupset
    channel ORA_DISK_1: specifying archive log(s) in backup set
    input archive log thread=1 sequence=58 recid=19 stamp=727519553
    input archive log thread=1 sequence=59 recid=20 stamp=727544121
    input archive log thread=1 sequence=60 recid=21 stamp=727544127
    channel ORA_DISK_1: starting piece 1 at 20-AUG-10
    channel ORA_DISK_1: finished piece 1 at 20-AUG-10
    piece handle=C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\BACKUPSET\2010_08_20\
    O1_MF_ANNNN_TAG20100820T154401_66X1O353_.BKP tag=TAG20100820T154401 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:04
    Finished backup at 20-AUG-10or you can try SEQUENCE clause:
    RMAN> backup archivelog sequence between 58 and 60 thread 1;
    Starting backup at 20-AUG-10
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting archive log backupset
    channel ORA_DISK_1: specifying archive log(s) in backup set
    input archive log thread=1 sequence=58 recid=19 stamp=727519553
    input archive log thread=1 sequence=59 recid=20 stamp=727544121
    input archive log thread=1 sequence=60 recid=21 stamp=727544127
    channel ORA_DISK_1: starting piece 1 at 20-AUG-10
    channel ORA_DISK_1: finished piece 1 at 20-AUG-10
    piece handle=C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\BACKUPSET\2010_08_20\
    O1_MF_ANNNN_TAG20100820T154911_66X1YRJL_.BKP tag=TAG20100820T154911 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:04
    Finished backup at 20-AUG-10or
    RMAN> backup archivelog sequence between 58 and 60;
    Starting backup at 20-AUG-10
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting archive log backupset
    channel ORA_DISK_1: specifying archive log(s) in backup set
    input archive log thread=1 sequence=58 recid=19 stamp=727519553
    input archive log thread=1 sequence=59 recid=20 stamp=727544121
    input archive log thread=1 sequence=60 recid=21 stamp=727544127
    channel ORA_DISK_1: starting piece 1 at 20-AUG-10
    channel ORA_DISK_1: finished piece 1 at 20-AUG-10
    piece handle=C:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\BACKUPSET\2010_08_20\
    O1_MF_ANNNN_TAG20100820T154748_66X1W5Z0_.BKP tag=TAG20100820T154748 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:04
    Finished backup at 20-AUG-10See http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta008.htm#i78730

  • If I back up my ipod  touch 5th gen and restore, will the new copy be exactly the same?

    I want to update my ipod to ios 8, but ther is not enough room. I am not willing to delete apps, so I figured that I would backup and restore after the update, which I have never done, and I was wondering if the restore would save everything, like game data and folder locations, so it would be like it never changed. If someone could please clarify, that would be great

    If you restore from iCloud backup the apps and other iTunes purchases will be automatically downloaded. Non-iTunes purchases like music from CD will be restored. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:        
    Downloading past purchases from the App Store, iBookstore, and iTunes Store         

  • Registering Clone database in Recovery catalog

    Can we able to register the clone database in recovery catalog database without changing dbid?
    I don't want to use dbid utility.
    Is that any parameter?
    Regards,
    Latha

    Well you can register it without changing any parameters in oracle 10.2
    That does not mean you should do it.
    I would have answered as follows:
    It is not a good idea to register a clone database in the same recovery catalog as the original database as the recovery catalog uses the dbid to identify the database and having two databases with the same dbid essentially corrupts the recovery catalog.
    If you change the dbid then it is perfectly okay to store the cloned database in the same recovery catalog.

  • What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi All,
    What are the commands using in SAP ECC 6.0 ehp on SYBASE Database? Backup and restore commands?

    Hi Jayachander,
    Have a look at these sap notes:
    For taking backup: Schedule from DB13 and get the exact command from Logs
    1841993 - SYB: How to schedule backups in DBA Cockpit
    1887068 - SYB: Using external backup and restore with SAP Sybase ASE
    How to restore DB
    1611715 - SYB: How to restore a Sybase ASE database server (Windows)
    Divyanshu

  • Has anyone sucessfully used the new Winclone 3.2 to backup and restore  Bootcamp partittion with Windows 7 Ultimate on MBP with Lion 10.7.3?

    Bought late 2011 MBP 17" with Bootcamp partition (Windows 7 Ultimate) and Lion OS 10.7.3
    I am trying to make a backup of Bootcamp partition before I start using my laptop but it proves to be a difficult task.
    I don’t have any installation disk for Windows 7 and I am afraid that, if a disaster strikes and I loose the HDD, my copy of Windows will be gone. 
    The only way to restore Windows partition according to what I read so far is to do the following:
    • Use Windows to backup data from BootCamp Partition
    • Reinstall OS Lion formatting full hard drive in the process
    • Use BootCamp Assistant to create BootCamp partition
    • Install Windows 7 on bootcamp partion
    • Use Windows 7 to restore data from backup file created in the first step
    The only problem is that I don't any image or disk to re-install Windows 7. With Windows 7 I can create only 'repair disk' (for what it is worth) or system image but according to other users it would format the whole drive including OS Lion partition when reinstalling
    Winclone 3.2 seems like the answer to my prayers but would like to hear from the users if it worked for them (most imprtantly, did the restore work?). 

    Got the response from Winclone regarding my confusion in step 18 of the procedure to create bootcamp backup.  The message displayed on the screenshot under step 18 can be ignored.  It refers to creating a Windows partition using Boot Camp Assistant but in fact this partition has already been created in earlier steps using Disk Utility. 
    I bought Winclone 3.3 as it promises to make backup and restore of Bootcamp partition with Windows 7 on it really easy, the steps to do this task are easy and well documented, and the owner of the program was very prompt responding to my queries.
    I performed the following as an insurance against disaster prior to creating Winclone image:
    Since my Windows 7 came pre-installed but without any installation disk I used Windows 7 to create 'Windows 7 system image' . From what I read on forums the system image created using Windows 7 apparently can't be used to easily restore Boot Camp partition (as it wipes out OS X in the process).  I created this image as a last resort backup rescue - some users reported that it can be used to recover Windows but the process is painful and involve a number of steps, swapping hard drives, and paid software to assist in the process.  I did not bother to make notes on this process - thanks to Winclone I am not suppose to need this backup if everything works as promised
    I also created 'Windows 7 repair disk' prior to running Winclone.  Not sure what the value of it will be but again, this is something I did just in case I need it in the future
    Then I installed Winclone 3.3 and created Windows 7 Ultimate Boot Camp image without any problems (on MBP running Lion 10.7.4).  My Winclone image file of 150GB Windows 7 Boot Camp partition prior to installing any programs and without any data on it ended up being nearly 8GB (saved to the external USB HDD).
    I have not restored and don't plan to restore the Winclone 3.3 image just to test if it works (don't want to risk loosing my perfectly well running Windows 7 in case of any disaster).  So ultimately only time or experience of other users will tell me if I spent my money well buying Winclone 3.3.  I  know it worked for you JBLTZ so hopefully it will work for me when I need it one day.
    Cheers
    Swavek

Maybe you are looking for