Restore database to another host - I have only rman backup files

Hi all,
The PC where Oracle was installed is crashed.
I have only the RMAN backup pieces in other computer.
I want to restore/recover this RMAN backup to other PC.
I know the commands, restore database, recover database,
but I've always used these commands with rman into existing rman
user. Now, I don't have anything. I have only the RMAN backup files.
How can I restore/recover database to other PC using these files?
The steps are? create other database, create a rman user, register
the rman backup files in this new rman, and restore these files
in this new database already created with the same name?
thank you!!!!

XM wrote:
Hi all,
The PC where Oracle was installed is crashed.
I have only the RMAN backup pieces in other computer.
I want to restore/recover this RMAN backup to other PC.
I know the commands, restore database, recover database,
but I've always used these commands with rman into existing rman
user. Now, I don't have anything. I have only the RMAN backup files.
How can I restore/recover database to other PC using these files?
The steps are? create other database, create a rman user, register
the rman backup files in this new rman, and restore these files
in this new database already created with the same name?
thank you!!!!You need to perform disaster recovery. For this, follow my step by step video tutorial:
http://kamranagayev.wordpress.com/2010/03/29/rman-video-tutorial-series-performing-disaster-recovery-with-rman/

Similar Messages

  • Create test version of database in another host

    Hi!
    As a production system I have a database with a standby database. (Dataguard).
    Now we want to create a test system of the production database in another host, test system shall not be with a standby database.
    Production system is about 5GB.
    What is the fastest and easiest way to create the test database, Oracle binaries are installed in test host but no databases are created.
    /Ulf

    If your database is really only 5 Gb (which would be quite small, particularly for a system that warrants Data Guard), export and import is probably the easiest option. You can also clone the database or recover your backup to the QA machine, but those options seem like a bit more work.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Upon sync or backup, I receive the message, "iTunes could not back up the iPhone "iPhone name" because and error occurred. I have deleted my backup file and tried another computer, with no success.  Also, the bluetooth function stopped working.

    Upon sync or backup, I receive the message, "iTunes could not back up the iPhone "iPhone name" because and error occurred. I have deleted my backup file and tried another computer, with no success.  Also, the bluetooth function stopped working.

    Hi, EJ13. 
    I see you are having issues with backing up you iPhone and have tried a couple troubleshooting steps.  There are a couple more steps I could recommend in the article below. 
    iOS: Troubleshooting backup issues in iTunes
    http://support.apple.com/kb/ts2529
    Regards,
    Jason H. 

  • Restore database to different host

    Hi
    Suppose, I have a full rman backup of a database called "orcl" in the tape.
    Can I restore this backupset to another host with database and instance name "test" ?
    I will first restore controlfile and datafiles respectively.
    In other words, is it necessary to have same database name and instance name if I want to do restore ?

    Hi!
    If you can connect from the target host to the source host than you can use the "DUPLICATE DATABASE" with "SET NEW NAME" option in rman. This is the easiest way:
    [http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmdupdb.htm#BRADV169]
    [http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta028.htm#RCMRF126]
    If the connection is not allowd from the target host to the source host than you can simply restore and recover the ORCL database on the target host and rename it with NID (DBNEWID) utility:
    [http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dbnewid.htm#SUTIL014]
    [http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dbnewid.htm#sthref1868]
    If this post was usefull please mark it as HELPFULL or CORRECT answer!
    Best Regards
    Norbert

  • Restore Database on New Host in Catalog mode

    Dearest DBAs,
    Here is RMAN configuration details,
    163.19.0.153
    Production Database (orcl)
    163.19.0.154
    RMAN Catalog Database (rman)
    163.19.0.155
    BackupSets Location
    163.19.0.156
    Test Machine
    I have taken the backup through RMAN and now want to restore the database using RMAN to a test machine. Where test database was already running and I have only removed the data files, control files and redo log files.
    This document on the following link describes the steps
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmrecov002.htm#sthref723
    I have connected to rman using following command
    c:\>set oracle_sid=orcl
    c:\>rman target rman/zaffar@rman nocatalog
    rman>set dbid 111122
    it gives me following error
    RMAN-03002
    RMAN-06188
    but rman is running in catalog mode that disallow me to set the dbid of the target database and because of this I am unable to proceed further.
    Kindly help.
    Regards,
    Asif

    the problem mentioned above has been solved, but now i am getting following error when i execute following script
    RUN
    # allocate a channel to the tape device
    ALLOCATE CHANNEL c1 DEVICE TYPE sbt PARMS='...';
    # rename the datafiles and online redo logs
    SET NEWNAME FOR DATAFILE 1 TO '?/oradata/test/system01.dbf';
    SET NEWNAME FOR DATAFILE 2 TO '?/oradata/test/undotbs01.dbf';
    SET NEWNAME FOR DATAFILE 3 TO '?/oradata/test/cwmlite01.dbf';
    SET NEWNAME FOR DATAFILE 4 TO '?/oradata/test/drsys01.dbf';
    SET NEWNAME FOR DATAFILE 5 TO '?/oradata/test/example01.dbf';
    SET NEWNAME FOR DATAFILE 6 TO '?/oradata/test/indx01.dbf';
    SET NEWNAME FOR DATAFILE 7 TO '?/oradata/test/tools01.dbf';
    SET NEWNAME FOR DATAFILE 8 TO '?/oradata/test/users01.dbf';
    SQL "ALTER DATABASE RENAME FILE ''/dev3/oracle/dbs/redo01.log''
    TO ''?/oradata/test/redo01.log'' ";
    SQL "ALTER DATABASE RENAME FILE ''/dev3/oracle/dbs/redo02.log''
    TO ''?/oradata/test/redo02.log'' ";
    # Do a SET UNTIL to prevent recovery of the online logs
    SET UNTIL SCN 123456;
    # restore the database and switch the datafile names
    RESTORE DATABASE;
    SWITCH DATAFILE ALL;
    # recover the database
    RECOVER DATABASE;
    ora-01511: erro in renaming log/data files
    ora-01516: nonexistent log file, datafile or tempfile 'e:\oradata\orcl\orcl\redo03.log'
    any help
    Regards,
    Asif

  • DUPLICATE DATABASE IN ANOTHER HOST WITH THE SAME DATABASE NAME

    Hi all.
    I want duplicate a database(dbteste1 host:wander) to another host(magda) with the same database name.
    My tnsnames in host wander is this:
    DBTESTE1 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = wander)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = dbteste1)
    DBTEST1 =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = magda)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = dbteste1)
    Tnsping is ok !!!
    Follow the rman command;
    RMAN> run
    duplicate target database to dbtest1 nofilenamecheck;
    and i get the following message:
    RMAN-06136: ORACLE error from auxiliary database: ORA-01503: CREATE CONTROLFILE falhou
    ORA-01504: o nome 'dbtest1' do banco de dados nÒo corresponde ao parÔmetro db_name 'dbteste1'
    If i run this command:
    RMAN> run
    duplicate target database to dbteste1 nofilenamecheck;
    and i get the following message:
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06136: ORACLE error from auxiliary database: RMAN-20021: database not set
    RMAN-06031: could not translate database keyword
    I´m using oracle 9.2.0.7 on Windows

    Wrong procedure and connection command,
    check Oracle document,
    Duplicating a Database with Recovery Manager
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmdupdb.htm#RCMUG012
    Follow all steps listed.

  • Cold backup -- have only _.BKP file in my hand (XE 11G)

    I am trying to restore a backup (?????_.BKP) file that has been created on my Oracle XE 11g, and that is all I have in my hand - the database has been uninstalled and I have only the file.
    Any one have the previous experience in recovering data like this?
    Thanks,

    No, I have no previous experience in recovering from an incomplete backup, as it is something which isn't possible.
    If you don't have a RMAN catalog database, the control file functions as catalog.
    If you don't have a separate controlfile backup and/or a RMAN autobackup of the controlfile of that database, your database is RIP.
    Many people forget you make a backup to be able to restore and recover. And as they never test the restore and recover procedure, they run into unpleasant surprises.
    Sybrand Bakker
    Senior Oracle DBA

  • Reliability of restoring from a disk image vs from a "normal" backup file

    How would you rate the reliability of restoring your data from a disk image file (a sparseimage file, in this case/question) versus from a 'normal' file, e.g. one created by the Backup 3 app?
    I read a few discussions here that mention corrupted disk image files...that result in a total loss of data...as opposed to other types of backup files, in which individual files, or folders, could be corruputed.
    For some context: my ultimate goal is (a) to create reliable backup files, e.g. in folders in my Home Folder, stored on an external disk drive, and (b) to secure that data.
    Thanks to Niel, in a prior discussion, I discovered that I could create a sparseimage file on the Lacie (encrypted).
    http://discussions.apple.com/thread.jspa?threadID=763337&tstart=0
    I could then select that secured file as the target / destination for the backup file/s I'm creating with the Backup 3 app. When I log out, that file is locked tight.
    But is this 'elegant' solution for backing up data "reliable" when I'll need it at 3am on that dark day when...?
    Many thanks.
    - David
    words to help others' search:
    BU3; sparse image;
    MBP 15" Core 2 Duo | LaCie d2 250GB ext   Mac OS X (10.4.8)  

    I keep both images of my boot volume which is just OS and apps, and of my home directory. But I also have full regular backups as well. It is not "either or" but a matter of having backup sets that will work. And rotating those sets.
    A daily backup, weekly, and monthly. That could require 3 or even 7 or more. Or partitions. But definitely more than one disk drive.
    One disk drive backup set should always be safely off line when making a backup set.
    Just as I have a clone of the system, an emergency boot drive, and one backup of the last OS revision.
    You have to change sparseimage to dmg if you hope to use Apple Disk Utility Restore, especially if you are working from DVD and not from a hard drive.
    I've used DU restore and SuperDuper and never seen or suffered a problem or corruption. But I zero drives before use.

  • Backing up ipad/iphone to new computer.  Have old computer backup files.

    I have a new computer and want to backup my ipad and iphone to the new computer without losing data and settings.  I have complete backup files from the old computer including the previous ipad and iphone syncs.  I have set up itunes on the new computer and transferred over my music.  Can I transfer over the mobile device backup files to the new computer so the sync on the new computer is as if I am to syncing to the old computer? 

    Thanks for the info.
    I have 2 files from from old computer (one for iphone and one for ipad) from the folder callled:  users\xxx\appdata\roaming\applecomputer\roaming\mobilesync\backup\.  If I just copy those over to the new computer and put them in the same subdirectory will the ipad/iphone recognize these when I try to sync?
    I also have the old itunes subfolder called Mobile Applications and am wondering if I just copy that over to the new itunes subfolder called itunes\media whether it will automatically be recognized?  Note: I am able to access the backup but unable to do anything in itunes in the old computer (such as consolidating or merging files) 
    Are these all of the files associated with the ipad/ipod backup that would have been stored on the old computer?

  • RMAN restore database from another backup of different database in the same host

    Hi Experts,
    I have taken FULL Database Backup using RMAN , now I want to Restore and Recover the same database on different instance on Same Host.
    Could u suggest any document or Steps to achieve this task.....
    Thanks,
    Mouni.

    No Problem.
    Please check this :
    http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmdupdb.htm#BRADV420
    ORACLE-BASE - Duplicate a Database Using RMAN in Oracle Database 11g Release 2
    Ensure you follow what Mr. Hemant has mentioned.
    Regards
    Karan

  • Itunes does not recognise my ipod it says i,m already logged in with another ipod. i have only ever used the one i,m using now on this PC.

    I tried to access my itunes account with my ipod touch. Itunes says i,m already using another ipod, which isn,t true. I have downloaded all my music and games to ipod touch. I did have another PC which i used an ipod nano. I have not used it on this PC. All my music has my music albums have been wiped out.Brian.

    I suspect you only migrated the media folder instead of the complete working library. Either review the transfer process and copy over the entire iTunes folder from your old profile's music folder or see Recovering your iTunes library from your iPod or iOS device.
    tt2

  • Retreiving Azure Database to another host

    Hi Guys,
    I have currently set up a database in Azure via MySQL Server Management, which i really just migrated to Azure as I am currently using Access. Few questions I need to ask, as I would like to know if Azure will fit my requirements.
    What I need to do is basically, allow a client to retrieve this database, update it and then allow Azure to automatically synchronize and update the database. The client will be using this database a number of times a day. How can I go about doing this,
    as I really am new to Azure.
    Any help will be appreciated. Thank you
    Umut Tavli

    Hello,
    Access supports connecting to SQL Azure over ODBC (linked tables and pass-through queries), but you need to use the SQL Server Native Client 10.0 driver or later version.
    Before connect to SQL database, you should create a SQL Server login as SQL Database does not support Windows authentication. You should also add the current IP in the Firewall setting.
    Reference:
    Access 2010 and SQL Azure
    linking-microsoft-access-to-azure
    Connect to Azure SQL Database Using ODBC
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • How to install OEM 10g using an existing database on another host

    Hi,
    I've created a 10g database (on host solaris_x86) which I like to use for the OEM 10G GC (on host linux_x86).
    If I install OEM using existing DB, then the installer expect the database is running locally.
    If I install OEM using new DB, then the installer complains that I've less then 1GB memory.
    Does somebody know how to solve this?

    Something is wrong ... Remote database works fine.
    we are using Tru64 OMS against Windows DB.

  • Why do I have duplicates in my iTunes library when I have only a single file for each song on my PC?

    I have duplicates for about half of the songs in my iTunes library. I've recently upgraded to a new PC so I'm assuming that it occurred at that point.
    However, when I go in to my iTunes media files I only once copy of each album or song filed. Also if I search my PC I'm only finding one copy of each of these duplicated songs.
    Duplicated songs appear to play equally well and there are no exclamation marks next to them either. I tried updating and that didn't work. If I uninstall and reinstall will it delete my iTunes media files? Will I need to back these up first?
    Any advice on how to get iTunes to stop displaying the duplicates would be really appreciated.

    See Grouping tracks into albums in particular the topic Missing Artist or Album not with others by same artist.
    tt2

  • HT1766 i have my iphone backup file how do i restore it to my phone

    please help

    Where did this file come from? Are you not able to drop it in the folder on the computer where the other backups are kept?

Maybe you are looking for

  • How to set-up a private Email with icloud

    Hello, I have a couple of other E-Mail accounts that I would like to use as alias in addition to my principal account. Unfortunately I was not able to find a setting for doing this, while it is possible to do with both "GMAIL" and "OUTLOOK". Does any

  • Acrobat Pro 9.4.3 filename prompt dialog window doesn't automatically display

    I'm running Acrobat Pro 9.4.3 from CS5 Design Premium on a Windows 7 Pro system. When creating a PDF from any source, the filename dialog window doesn't open. I have to click on its icon in the taskbar to display it. Acrobat works fine on our XP Pro

  • EAR Deployment Problem with weblogic 10.2. Need help.

    Hi, I have a EAR file exported from MyEclipse IDE. When i am deploying the EAR file in weblogic 10.2, i am not seeing classess and properties were not exploded under WEB-INF/classes in the web project. I can see the classes folder but it's empty. Whe

  • Class compatibility

    Hi, We're dealing with components that pass object to each other as method-parameters. When these components were not simultaneously build from the same workspace, we can encounter problems. The class definitions held by one partition may differ from

  • CUSTOM IDOCS

    HI ALL, I WANT TO SEND A CUSTOM IDOC FROM ONE SYSTEM [ONE SERVER ] TO ANOTHER [ANOTHER SERVER ]. GIVE THE PROCEDURE. ANY HELP WILL BE HIGHLY APPRECIATED. WITH REGARDS, SURESH.A