Spfile restore from RMAN Tape backup to different server

Hi All,
First of all let me thank you to the forum from which I keep updating my knowledge on oracle.
I am having issues when trying to restore spfile from controlfile autobackup to different server. Problem and other details are below:
Target version : 10.2.0.2
Netbackup : 6.5.6
Taken the tape backup through rman on server ABC and trying to restore the spfile from controlfile autobackup to server XYZ. Tape backup has been taken today morning and trying restore now.
Both servers ABC and XYX have been added (as clients) to netbackup policy.
Below is the syntax I used for restoring spfile and getting error as mentioned.
RMAN> run {
2> set controlfile autobackup format for device type 'SBT_TAPE' to '%F';
3> allocate channel ch00 device type 'sbt_tape'
4> parms='ENV=(NB_ORA_SERV=Mediaserver,NB_ORA_CLIENT=XYZ)';
5> restore spfile to pfile '/oracle/product/10g/dbs/inittest.ora' from
6> autobackup maxseq 5 maxdays 3;
7> }
executing command: SET CONTROLFILE AUTOBACKUP FORMAT
allocated channel: ch00
channel ch00: sid=36 devtype=SBT_TAPE
channel ch00: Veritas NetBackup for Oracle - Release 6.5 (2010042405)
Starting restore at 03-AUG-2011
channel ch00: looking for autobackup on day: 20110803
channel ch00: looking for autobackup on day: 20110802
channel ch00: looking for autobackup on day: 20110801
channel ch00: no autobackup in 3 days found
released channel: ch00
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 08/03/2011 14:03:26
RMAN-06172: no autobackup found or specified handle is not a valid copy or piece
Not sure where I am doing wrong. The same can be restored onto same host (I.E ABC) without any issues .
Request your help and guidance.
Thanks,
SSS

I don't know whether you can restore to a different server. The easier way should be
RMAN> restore spfile to pfile 'YOUR_PFILE_NAME' from autobackup;
then copy this to the new host.
Check this link
restore spfile to another host
Hope this helps

Similar Messages

  • Restoring from RMAN tablespace backup ; Few questions

    11.2.0.3/RHEL 5.8
    We have a RAC DB which is used by more than 20 applications. One schema for each application and one tablespace for each schema.
    We have a schema with 130gb in size. All Objects in this schema use a single tablespace MCS_DATA.
    This weekend we are applying some changes involving DDL, Code and Data .Usually we take an expdp backup of the schema before the activity starts and later if something goes wrong with script deployment we'll revert to old state by dropping the schema and doing an impdp from the expdp backup.
    Question1.
    Can we do an RMAN tablespace only backup and if something goes wrong with script deployment can we drop the schema and the tablespace and then create an empty schema and then restore from the tablespace backup ?
    Question2.
    If the above is possible , can you explain how it is going to work out because we are essentially plugging (restore,recover) in a tablespace to the database. Any potential problems ?
    Question3. If the above (Question1) is possible, will restore/recover of this tablespace require a downtime for the entire DB ?

    Tom;
    If you are talking about RMAN TSPITR then yes you can. See - Purpose of RMAN TSPTIR in Backup and Recovery User's Guide E10642-03.
    The problem with TSPTIR is bulk. You need a lot of disk space to create a copy and then data pump the information out and back in. I just tested this on 11.2.0.3 and its slow. RMAN created a script which produced an AUX instance and did the data pump, but I had clean up afterwards. If it errors out you can have an AUX instance hanging out in the background.
    For TSPTIR you will need an area on the disk to server as an auxiliary destination large enough to hold what you are recovering plus the SYSTEM, UNDO and TEMP tablespaces.
    I would probably look at Transportable tablespaces as a possible option too.
    http://docs.oracle.com/cd/E25054_01/backup.1111/e10642/rcmttbsb.htm
    E10642-03 has a section for recovering a tablespace in chapter 2. The Tablespace must be offline, but the database can be up.
    This uses "restore tablespace" and "recover tablespace" commands. You would perform this type of recovery when you are say missing a datafile. You can recover any tablespace except SYSTEM and UNDO with this.
    Data Pump might be an option too, but given your tablespace size I would have worries about recovery time. Oracle lets you set compression
    and a limit to each file produced.
    expdp TABLESPACES=YOUR_DATA dumpfile=DATA_PUMP_DIR:ts_dumps_%U.dmp LOGFILE=DATA_PUMP_DIR:ts_dumps_log.log parallel=2 filesize=10G compression=ALL
    Given the size of your database a better option might be something like Data Guard as your recovery time would be brutal.
    Best Regards
    mseberg

  • Cloning DB on a different server from RMAN Tape backup

    RDBMS version           : 11.2.0.2 on Solaris 10
    Media Management Layer : Netbackup v7
    I have done only backups to Tape. I have never done restore,recovery from Tape.
    We have a production DB named NEHPROD running on server qualmh214. Every Monday morning an RMAN Full backup for NEHPROD is taken to Tape.
    Production server : qualmh214        DB Name:NEHPROD
    run
    ALLOCATE CHANNEL c1 TYPE 'SBT_TAPE';
    SEND 'NB_ORA_CLIENT=qualmh214,NB_ORA_POLICY=qualmh214_rman,NB_ORA_SERV=qualmh238,NB_ORA_SCHED=Daily';
    backup database   FORMAT 'NEHPROD_%d_%U_%t.rbk' tag='NEHPROD_full';
    }I need to create a Test DB in a different server (qualmh199) by restoring directly from NEHPROD's Full backup in tape .
    From qualmh199, how can I connect to the Tape Media server ?
    Even If I do connect to the Tape media server, how can i get access to tape backups of another DB? In the RMAN run block you can't specify a DB name. Right?
    Even if I get access to another DB's backup , How can i specify which Date's Full backup I need to use to restore ?

    From qualmh199, how can I connect to the Tape Media server ?You have to allocate channels to tape & need to mention NB parameters as example below.
    in RMAN script
    ALLOCATE CHANNEL CH1 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/usr/openv/netbackup/bin/libobk.so64';
    SEND 'NB_ORA_SERV=<server.com>, NB_ORA_CLIENT=<target.server>';
    Even If I do connect to the Tape media server, how can i get access to tape backups of another DB? In the RMAN run block you can't specify a DB name. Right?If the libraries are installed and you able to perform, you can go for either duplicate database or simple RMAN restore. You can mention other DB names also
    Ex: duplicate target database to 'test';
    Even if I get access to another DB's backup , How can i specify which Date's Full backup I need to use to restore ?You can mention TAG's if you are using RMAN restore.

  • RMAN restore from monthly tape backup

    hello!
    i have one more question regarding rman and tape backups: we don't want to store the rman recovery information in a separate database, so all the information is in the control files. but for revision we need to save one full backup per month. in addition to the databases we need files from different servers etc. on this tape-backups. so we decided to keep one tape set per month in a safe place -> is it possible to restore a rman backup from this tapes, e.g. 3 years afterwards (on a different machine)? thanks.
    bye,
    christian

    Hi christian,
    Can you give more info?
    As I understand it you do not want to use a recovery catalog ("we don't want to store the rman recovery information in a separate database").
    But if you store the rman backup info in the controlfile only you will limit the amount of rman information to your init parameter control_file_record_keep_time.
    Do you make rman backups to tape directly using a MML or do you make rman backups to disk which than get copied to tape (OS backup)?
    Regards,
    Tycho

  • Restore from time machine backup to different mac

    The logic board is fried on my apparently backed-up, out of warranty MacBook Pro (MBP), which was running Lion. I don't have enough time to figure out the steps and get it done. I need some help here.
    Option 1:
    I am weighing and thinking (and weighing and thinking..) should I turn an underutilized iMac at home (running Snow Leopard) into the recipient of the files and programs of the MBP? This would mean restoring from that backup over wi-fi to the iMac. This solution has distinct challenges I believe, but I am not familiar with what they are. What do I need to do to accomplish this option? How many pre-requisites and steps would I need to take?
    Option 2:
    Buy a new MBP (big bill) or MacBook Air (MBA, cheaper), and attempt the use of Setup Assistant to bring the apps and data over to the new MBP or MBA. Supposed to work easily.

    Hi Steven,
    The question is, which option would you most LIKE to do. Both options require the same step and will hav the same outcome. Replacing your MacBook Pro with a new one would surely be the best experience, but migrating to an existing iMac would be just as simple.
    Either way, as you know, you would use Migration Assitant to transfer the data to the new recipient. You mentioned using WiFi, but if you have that backup on an external USB drive, that may be much faster.
    I can't think of any problems this would pose, except maybe the loss of settings that arent compatible with the OS of the backup. if you choose option 1, it may make it easier to upgrade the iMac to Lion that way it receives that backup more seemlessly.
    I hope my suggestions help! Let me know if you have any more questions

  • Restore 11g rman cold backup on same server.

    Hi All,
    I have a requirement , where we have to clone one development database's to other database's sitting on the same host.
    I have taken the cold rman backup and copy it different database's local folder.
    I changed the db_name in target pfile and did the nomount , but when I tries to restore the controlfile , it throws me below errors.
    Just to add to to it, I was ale to restore the controlfile to the location specified in pfile.
    now , when I tries to mount the database , it throws me following errors
    Snippet from target database's
    SQL> startup mount pfile=/db/epmtrain/oracle/11.1.0/dbs/initepmtrain.bkp
    ORACLE instance started.
    Total System Global Area 1.3696E+10 bytes
    Fixed Size                  2132152 bytes
    Variable Size            6173202248 bytes
    Database Buffers         7516192768 bytes
    Redo Buffers                4362240 bytes
    ORA-00205: error in identifying control file, check alert log for more info
    RMAN> run {
    2> restore controlfile from '/db/epmtrain/export/rman/EPMDEV_06ogm377.bkp';
    3> }
    Starting restore at 07-AUG-13
    using channel ORA_DISK_1
    channel ORA_DISK_1: restoring control file
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 08/07/2013 07:12:21
    ORA-19870: error while restoring backup piece /db/epmtrain/export/rman/EPMDEV_06ogm377.bkp
    ORA-19504: failed to create file "/db/epmtrain/oracle/11.1.0/dbs/db/epmtrain/data1/epmtrain/control01.ctl'"
    ORA-27040: file create error, unable to create file
    HPUX-ia64 Error: 2: No such file or directory
    Regards

    940856 wrote:
    I restored the controlfile to the path mentioned in pfile. after that , when I tries to mount the database , it throws me the following errors.
    ---------- Snippet from alert.log ------
    ORA-00210: cannot open the specified control file
    ORA-00202: control file: '/db/epmtrain/data1/epmtrain/control01.ctl''
    ORA-27037: unable to obtain file status
    HPUX-ia64 Error: 2: No such file or directory
    Additional information: 3
    ORA-205 signalled during: ALTER DATABASE   MOUNT...
    ------------ controlfile location in pfile ---------
    *.control_files=/db/epmtrain/data1/epmtrain/control01.ctl','/db/epmtrain/data1/epmtrain/control02.ctl'
    --------------- show parameter control output -------------
    SQL>  show parameter control
    NAME                                 TYPE                             VALUE
    control_file_record_keep_time        integer                          7
    control_files                        string                           /db/epmtrain/data1/epmtrain/co
                                                                          ntrol01.ctl', /db/epmtrain/dat
                                                                          a1/epmtrain/control02.ctl
    control_management_pack_access       string                           DIAGNOSTIC+TUNING
    Regards
    So present proof that "/db/epmtrain/data1/epmtrain/control01.ctl" actually exists .....

  • Restoration of MaxDB online backup on other server for creating Standby DB

    Hi,
    I had taken MaxDB online database backup through Data Protector 6.11. Now i want to restore this backup on other server. So that i can configure this as a standby database. I selected config and data for restoration but it was giving me an error as below,
    [Critical] From: OB2BAR_SAPDBBAR@ttcsolma "BE1"  Time: 01/11/11 01:19:05
          Error: SAPDB responded with: -24988,ERR_SQL: SQL error
    -9407,System error: unexpected error
    3,Database state: OFFLINE
    Internal errorcode, Error code 9050 "disk_not_accessible"
    So I created the database but with default values and then tried restoration but getting error as below,
    Error: Unable to read the configuration value `All' for SAPDB instance `SID'.
    If anybody is having any document or steps for confguring the Standby MaxDB database through Data Protector backup/restore method.
    Thanks,
    Narendra

    Hi Siva,
    Thanks for the replyu2026Yes I had copied the dbm.ebf, dbm.mdf dbm.knl files from the source server to target server. And also backup is visible in target server. And also I created Data /Log volumes size as equal to source server.
    I tried restoring through DBM GUI with "recovery with initialization" option but I am getting error message as below and also I am getting same error message when I restore from Data Protector GUI. But I donu2019t have any problem restoring the backup on same server the problem occurs only when restoring it on target server.
    Now for testing I have taken backup on file system through DBM GUI of source system and started restoring on target system. No problem while restoring from file system backup on target server. I am suspecting there is some problem with PIPE as I am using third party backup tool i.e. DP 6.11. I want to resolve the problem with third party backup tool as we will take all MaxDB database backup on tapes through DP 6.11.
    Through DBM GUI error message:
    Error: SAPDB responded with: -24925,ERR_PREPARE: preparation of backup operation failed
    The list of external backup ID's contains less than 16 ID's.
    Through Data Protector GUI error message:
    [Normal] From: RSM@bkupsvr ""  Time: 1/18/11 8:49:16 AM
          Restore session 2011/01/18-12 started.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:50:58
          Executing the dbmcli command: `user_logon'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:00
          Executing the dbmcli command: `dbm_configset -raw BSI_ENV /var/opt/omni/tmp/SID.bsi_env'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:03
          Executing the dbmcli command: `db_admin'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:03
          Executing the dbmcli command: `util_execute clear log'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:22
          Executing the dbmcli command: `dbm_configset -raw set_variable_10 OB2BACKUPAPPNAME=SID'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:22
          Executing the dbmcli command: `dbm_configset -raw set_variable_11 OB2BACKUPHOSTNAME=ttcmaxdr'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:23
          Executing the dbmcli command: `util_connect'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:24
          Restoring backup 2011/01/17 0061.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:24
          Executing the dbmcli command: `medium_put BACKDP-Data[8]/1 /var/opt/omni/tmp/SID.BACKDP-Data[8].1 PIPE DATA 0 8 NO NO \"\" BACK'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:24
          Executing the dbmcli command: `medium_put BACKDP-Data[8]/2 /var/opt/omni/tmp/SID.BACKDP-Data[8].2 PIPE DATA 0 8 NO NO \"\" BACK'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:25
          Executing the dbmcli command: `medium_put BACKDP-Data[8]/3 /var/opt/omni/tmp/SID.BACKDP-Data[8].3 PIPE DATA 0 8 NO NO \"\" BACK'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:25
          Executing the dbmcli command: `medium_put BACKDP-Data[8]/4 /var/opt/omni/tmp/SID.BACKDP-Data[8].4 PIPE DATA 0 8 NO NO \"\" BACK'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:26
          Executing the dbmcli command: `medium_put BACKDP-Data[8]/5 /var/opt/omni/tmp/SID.BACKDP-Data[8].5 PIPE DATA 0 8 NO NO \"\" BACK'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:27
          Executing the dbmcli command: `medium_put BACKDP-Data[8]/6 /var/opt/omni/tmp/SID.BACKDP-Data[8].6 PIPE DATA 0 8 NO NO \"\" BACK'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:27
          Executing the dbmcli command: `medium_put BACKDP-Data[8]/7 /var/opt/omni/tmp/SID.BACKDP-Data[8].7 PIPE DATA 0 8 NO NO \"\" BACK'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:28
          Executing the dbmcli command: `medium_put BACKDP-Data[8]/8 /var/opt/omni/tmp/SID.BACKDP-Data[8].8 PIPE DATA 0 8 NO NO \"\" BACK'.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:28
          Executing the dbmcli command: `recover_start BACKDP-Data[8] DATA ExternalBackupID "SID 11011761:1 Stream,SID 11011761:2 Stream,SID 11011761:3 Stream,SID 11011761:4 Stream,SID 11011761:5 Stream,SID 11011761:6 Stream,SID 11011761:7 Stream,SID 11011761:8 Stream"'.
    [Critical] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:30
          Error: SAPDB responded with: -24925,ERR_PREPARE: preparation of backup operation failed
    The list of external backup ID's contains less than 16 ID's.
    [Normal] From: OB2BAR_SAPDBBAR@tstmaxdb "SID"  Time: 01/18/11 08:51:30
          Executing the dbmcli command: `exit'.
    [Normal] From: RSM@bkupsvr ""  Time: 1/18/11 8:49:59 AM
          OB2BAR application on "tstmaxdb" disconnected.
    Thanks,
    Narendra

  • Restore controlfile from leagato tape backup

    I am using legato tool to perform rman tape backup.
    I use the following script on legato to get the controlfile backup.
    "backup current controlfile format '%d_%s_%p.ctrl'; "
    If I lost the controlfile how do i restore controlfile from the tape. Assume that the DB in nomount stage.

    Hi,
    backing up autobackup controlfiles to legato is possible. All you have to do is to configure autobackup accordingly. By default autobackup controlfiles will get written to disk.
    However i strongly recommend to use a rman backup catalog. This will save you a lot of time consuming trouble if you need to restore your database.
    The rman catalog database itself does not need any license and is rather small (5 GB on disk, 512 MB memory).
    Restoring the control file will be something like this:
    set controlfile autobackup format for device type sbt to '%F';
    restore controlfile from autobackup;
    Ronny Egner
    My Blog: http://blog.ronnyegner-consulting.de

  • HT1414 I'm trying to restore from an earlier backup but my iphone only shows the most recent. I'm on Windows Vista and found the backup folder. If I delete the recent files, will it force the iPhone to backup from the next older file?  Why doesn't it show

    I'm trying to recover a file and the app company said to restore from an earlier backup.  My iPhone only shows the most recent backup.  I've been searching the net for answers - I found the back up file and date sorted them (over 6mb of files).  How can I get my iPhone to restore from an earlier backup? 
    I am on Windows Vista so I don't have Time Machine. 
    I have backed up the backup folder so if I mess it up, I have it in a separate place.
    Can I just delete all the files with todays date in that backup folder and have it forced to the next oldest date?
    Why doesn't the iPhone show a list of the least several backups.
    Info:
    iPhone 4S
    Software version  5.1.1
    Backed up to computer through iTunes (not iCloud)

    As you backup the iPhone in iTunes, it overwrites the last backup. Files are kept as they are changed, so that would explain how you get different dates in your backup folder. The only backups that are saved and not overwritten are the ones done just prior to a restore. You do have the option to go back in time on a Windows computer, however depending on the last time you set a restore point in Windows, it could be back further than you are willing to go.

  • Imac won't restore from time machine backup after HD (hard drive) recall replacement

    I have an imac bought in 2011, running Snow Leopard.  It required an HD replacement due to the 1 TB Seagate recall - the replacement was done by a certified Apple repair station yesterday.  Before the guy left he started a backup/restore from my latest time machine backup set.  It failed.  I attempted it two times and got error messages that it failed and the computer needed to be restarted to try it again.  No luck.  I called the guy back and he told me to call Apple Care.  Not thrilled about that response since the guy had just left my house I did what he told me to do.  (A quick sideline here:  I recognize that a time machine backup should be no big deal and SHOULD work everytime, but it doesn't.  It irks me that Apple is replacing my HD through no fault of mine and yet they don't allow the restore of data to be a "covered" expense in this process - this isn't just because this was an authorized repair guy - the Apple store would have done the same). 
    Back to the issue.  When I called apple care they pretty much had me try the same thing again with an earlier back up set.  To my knowledge, it didn't work.  I say this because it looked like it was working and when I came back to the imac later, it had restarted and once again booted to the OSX install.  (The boot disc is still in the imac).  When I tried to boot from another location, one did not show up to boot from so I assumed that the data didn't transfer and it forced another restart.  So, I tried something else.  I tried to re-install the snow leopard OSX without using the restore function.  That appeared to work and then when the machine restarted it asked if I had another mac and I chose the option to get the files/apps/etc. from my time machine backup.  The computer chose what I can only assume is the most recent backup set (It chose what I know to be a subfolder that appears under the dated backup folder - Macintosh HD--which btw is confusing seeing as that's always the name of the HD on the imac).  I again stepped away from the computer so it could do its thing for two hours.  When I returned, I was back to the MAC OSX screen that asks you to choose a language.  There were no more options to choose DISK UTILITY or RESTORE FROM BACKUP, etc.  When I clicked on English it took me right back into the screen where you say whether you have another Apple that you want to transfer data from.  I realized that the imac must have restarted and I assumed maybe it was because the boot disk was still in - except how do you get the disc to eject?  I also initially assumed that the backup had somehow failed again and triggered a restart.  I tried to choose the option to just set up the machine without transferring data and when I got to the choose a name for your HOME folder message I tried to enter the same name I had it as before and it wouldn't allow me to do so, saying that that name was already in use.  I also tried a different name and that didn't work either - got the same message (I assume if it is not the same name that it won't sync up with the time machine data from the backup set).  So, I almost tried the "select time machine backup" option again until I looked at my HD space.  Clearly, there is space that has been used.  HD space was 997 at the start and now it's 636. My initial thought is to somehow get back into the setup area where I can use disc utility and erase the whole thing and then start over but 1) I don't think it's going to work even if I could get back there 2) I have no idea how to get this thing to reboot into that mode 3) I can't get the boot CD out to even try to restart to see if this thing did what it was supposed to, SO NOW I AM TOTALLY STUCK!  I have not called Apple Care back because quite frankly they were useless the first time.  I have a call into the repair guy but who knows how much help he will be.  In the mean time, I have a million things to do and a computer that isn't working - Whoever said Apples never have issues needs to be seriously censored!
    A few other notes:  I use Time Machine Editor to run my backups weekly.  It was set up that way from the get go by an Apple rep who came to my house to get us up and running.  Editor should not effect the way that time machine does its work, so I doubt there is relevance but thought it worth mentioning. 
    One other note is that the Apple Care agent tried to have me do something called a "Source" something or other from the disk utility screen but when she realized that my backup file (shown by date) contained many other sub files (11-27-12/MacintoshHD/MyNamesIMAC/etc.), it was not possible to run this operation - thus we aborted.  Sorry I don't remember the name of the process and unfortunately now can't access that option to go find it. 
    If you can help me, I would be eternally grateful!  I am open to having a phone conversation if you are willing to give me your email to mail you my number. I have so much work to do this week and this was the last thing I needed.  Did I mention this was supposed to be EASY?
    I used to be quite the geek with my PC - still on the learning curve with the mac but not enjoying it.  I am fairly tech savvy and I can follow instructions for a step by step solution if you've got one. 

    I got a recall and had the drive replaced. I have retored 3 timesa dn even had apple do the job and it is still not right. I still can't get a simple ghost of the data from time machineback tot he new drive. 
    This is Apple's explaination as taken from their web page.:
    Restoring your entire system from a backup
    If you are restoring a backup made by a Mac to the same Mac
    With your backup drive connected, start up your Mac from the Recovery system (Command-R at startup) or Mac OS X v10.6 installation disc. Then use the "Restore From Time Machine Backup" utility.
    Note: If "You can't restore   this backup because it was created by a different model of Mac" appears  when restoring  a backup that was  made on a different Mac, follow the onscreen instructions.
    I even posted this information on the community and apple removed it... because they don't like the:
    Off-topic or non-technical posts
    Non-constructive rants or complaints
    But here is my experieince:
    Take in 27iMac running 10.6.8, 5-7 days, what a joke, my boss will be happy to pay for a week without working. Finally get, "if you have TM back up, 3 days." Get machine back with 10.6.3, hit the R recovery, click TM back up, runs for 2 hours, reboots, looks great. Box up take back to office... update to install - OH NO, still running 10.6.3. Updates crash with no specific error on install, BUG PROBELM, nothing runs.
    Call Apple... after hours, tells me to boot using 10.6.2 disk, wipe, reinstall OS, udate to 10.6.8, THEN do the restore. GREAT! Only thing 10.6.2 DVD won't read... now back on phone... take back to the store, Genius says, he'll ix it just like it was. PROMISES it'll be fixed.
    Pick up next day, supposedly, booted to disk, wiped drive, reinstalled, updated to 10.6.8 and THEN did the RIGHT restore... Looks GREAT... apps run and 10.6.8 OS. Back to the office... NOT RUNNING right!!!... fonts messed up, drop box app needs new install, cocktail needs upgrade, Fetch not working, memorized paths gone... back ups locked out of permissions... ***!!
    4 hours on phone with apple and still no rsolution - to missing "settings". Seems there are THREE WAYS TO RESTORE (according to apply tech)... Running MIGRATE ASSISTANT and being able to choose your files, including settings, "R" RESTORE after they load a new OS... or NOW WAITING for them to send me a bootable 10.6.3 disk and then boot from disk, w/o installing OS and doing a restore from TM. I think this is done via the disk Utilties application.
    So now can't back up without doing a full 400 GB back up since permissons are screwed and possibly destroying any good back ups... can't work, like having hands tied behind back. WAITING for solution! Very upset!!!
    I did my first restore just like they said and now an 10 days without proper machine. Just FYI. I thnk I am going to make the store do the tech work so I have somthing to fall back on.

  • Unable to restore from Time Machine Backup

    Hello,
    My system recently crashed after removing the Boot Camp partition for Windows!
    But No problem because I have everything backed up on my Time Capsule!
    But actually there is a problem... I inserted my Mac OS X 10.5 Installation disk and tried to restore from a backup done on Mac OS X 10.6.1...
    After 3 hours it told me that the restore was sucessful but when I restarted, a grey screen appeared and told me to restart again... And I keep getting that screen each time I try to boot.
    I tried to repair the disk using disk utility but still getting the problem!
    Can it be caused because the backup was made on Mac OS X Snow Leopard (10.6.1) and I am trying to restore using a Leopard disk (10.5)?
    Thanks in advance.
    Mathieu
    Message was edited by: matappassamy

    Tobstar007 wrote:
    I had the exact same issue, and thought I was safe with my computer backed up. After failed attempts to restore with the 10.5 disk I got my 10.6 Snow Leopard disk back off my friend. I erased the hard drive and reinstalled Snow Leopard, thinking I could use the migration assistant. Not so, since I had renamed my hard drive from Macintosh HD to a different name, there was but one backup I could choose from which was 10.5.6 or something like that and that was right when I first got my computer. So now I thought: oh now I have Snow Leopard installed on here and I have the Snow Leopard disk, restoring should work. Six hours later it was at 71% telling me it could not restore files. THIS IS INCREDIBLY FRUSTRATING. So right now my computer is yet again going through the unneccessarily arduous journey of erasing it's hard drive and restoring from a backup of 10.6, not 10.6.1 which was made in September. Any help with this failure of Time Capsule and Time Machine would be appreciated. I had to type this on my iPhone since I don't have any computer at the moment. :'(
    Try doing a full system restore from your TM backups. See the instructions in item #14 of the Frequently Asked Questions *User Tip* at the top of this forum.

  • Question about Restoring from an iTunes Backup

    I just did a restore from an iTunes backup on my iPhone 5 and noticed that the restore process seemed different than before.  iTunes went through the restore process and once it appeared that it had finished restoring, I went to the home screen and all of my apps from the previous backup were missing.  Then iTunes went into the syncing process and I saw each of the apps download onto the home screen one by one. Before I thought the restore process covered all of this in one action, whereas now it seems to do the first part of the restore then the app syncing.  Is this what a normal restore from iTunes backup looks like?

    The ability to load OS X Internet Recovery is provided by firmware independent of the SSD. Just make sure your MBP has the latest firmware, which was released years ago.
    You won't need a separate step to install OS X. Answered more completely in (2).
    Merely format the SSD Use Mac OS X Extended (Journaled) and as many partitions as you desire. One is sufficient.
    Only Crucial can answer that. You might be better off purchasing a SSD from a company known to support Macs, such as OWC / MacSales. I have several of their SSD products and haven't had to devote a moment of thought to Trim.
    That's done by virtue of the Recovery firmware. It will recognize that no Recovery partition exists and will create one, after which you won't have to use OS X Internet Recovery (though it will remain an option).
    If you obtain your SSD from OWC that's really all you need to know. Mechanically, it's not much more complicated than installing memory. As far as recovering the original HD's contents, restoring from the Time Machine backup is also straightforward. TM doesn't know and doesn't care that it's a SSD.

  • Creating Standby From RMAN Compressed backup taken on Primary ....

    I am creating a Standby from RMAN Compressed backup taken on Primary.
    On Primary, I have taken Compressed backup as follows:
    RMAN> run
    allocate channel c1 type disk;
    allocate channel c2 type disk;
    allocate channel c3 type disk;
    BACKUP AS COMPRESSED BACKUPSET DATABASE PLUS ARCHIVELOG format '/dboracle/orbit_pr_bkp/primary_%U';
    backup current controlfile for standby format '/dboracle/orbit_pr_bkp/primary_cntl.bkp';
    oracle@apl06635orbvu1:/dboracle/orbit_pr_bkp>ls -ltr
    total 51652
    -rw-r----- 1 oracle dba 11972608 Jan 7 13:45 primary_0tm1h32n_1_1
    -rw-r----- 1 oracle dba 15762432 Jan 7 13:45 primary_0sm1h32n_1_1
    -rw-r----- 1 oracle dba 16785920 Jan 7 13:45 primary_0rm1h32n_1_1
    -rw-r----- 1 oracle dba 1088000 Jan 7 13:45 primary_0um1h32v_1_1
    -rw-r----- 1 oracle dba 32768 Jan 7 13:45 primary_12m1h33r_1_1
    -rw-r----- 1 oracle dba 7143424 Jan 7 13:47 primary_cntl.bkp
    On Standby, I restored the control file as below:
    RMAN> restore standby controlfile from '/dboracle/orbit_pr_bkp/primary_cntl.bkp';
    Starting restore at 10-JAN-11
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=156 devtype=DISK
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    output filename=/dboracle/orbit_dr/oradata/ORBIT_DR/controlfile/o1_mf_6lo6nwfr_.ctl
    output filename=/dboracle/orbit_dr/flash_recovery_area/ORBIT_DR/controlfile/o1_mf_6lo6nwky_.ctl
    Finished restore at 10-JAN-11
    But, When I am trying to restore the datafiles, RMAN is throwing error:
    RMAN> run {
    allocate channel d1 type disk format '/dboracle/orbit_pr_bkp/primary_%U';
    allocate channel d2 type disk format '/dboracle/orbit_pr_bkp/primary_%U';
    restore database;
    2> 3> 4> 5>
    released channel: ORA_DISK_1
    allocated channel: d1
    channel d1: sid=155 devtype=DISK
    allocated channel: d2
    channel d2: sid=151 devtype=DISK
    Starting restore at 10-JAN-11
    released channel: d1
    released channel: d2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 01/10/2011 05:38:56
    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
    What would be the correct RMAN command?
    Regards, Anirban

    After your RESTORE the (standby) controlfile, you must MOUNT the database instance with "ALTER DATABASE MOUNT".
    You can also then query the controlfile with a "LIST BACKUP" or "LIST BACKUP SUMMARY" in RMAN to see if the deseired backups have been cataloged in the controlfile.
    Don't specify the format for the ALLOCATE CHANNEL when you RESTORE DATABASE. In fact, you don't need to ALLOCATE CHANNEL at all when the device type is the default value of DISK if your are on 10gR2 or above.
    Hemant K Chitale

  • Error in RMAN TAPE BACKUP

    Dear Gurus,
    I got the following error in RMAN TAPE backup.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of delete command on default channel at 09/20/2011 02:36:58
    ORA-15028: ASM file '+ASMFLASH/gcprod/archivelog/2011_09_15/thread_2_seq_55857.2176.761912673' not dropped; currently being accessed
    RMAN>
    Recovery Manager complete.my RMAN BACKUP Script is:
    rman target sys/*****@gcprod1  nocatalog  << EOF
    spool log to $v_bdest/clean_catalog_TAPE.log append;
    run {
    allocate channel c1 type 'sbt_tape' parms
    'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    #crosscheck backupset;
    #crosscheck copy;
    #crosscheck archivelog all;
    # included on 21Jan2011 at 9:18 PM
    #delete noprompt expired backup;
    delete noprompt obsolete;
    #delete noprompt expired archivelog all;
    # included on 21Jan2011 at 9:18 PM
    release channel c1;
    exit
    EOFMy RMAN RETENTION POLICY IS:
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 3 DAYS;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE ENCRYPTION FOR DATABASE OFF;
    CONFIGURE ENCRYPTION ALGORITHM 'AES128';
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/oracle/app/oracle/product/10.2.0.1/db_1/dbs/snapcf_gcprod1.f';According to retention policy archivelogs of past 3 days should be present rest and all , i have written a script to delete and it is performing well from past 6 months, but now recently we got this error
    we have enough archivelog space.
    and the archive log pointing in this error is on 15th september archivelog.....today date is 20th september....
    My archive log was stored in asm .... i went there and saw that still 15th september archivelogs are present there.
    Please help me regarding this
    Regards,
    Vamsi.....

    For RMAN topics, please use: {forum:id=74}.

  • HT1766 After restoring my iphone 4 to factory settings, then restoring from a recent backup, my phone will reboot but keeps coming back to the "new setup or restore from backup screen". How can I by-pass this screen to go directly to the sync apps/music s

    After restoring my iphone 4 to factory settings, then restoring from a recent backup, my phone will reboot but keeps coming back to the "new setup or restore from backup screen". How can I by-pass this screen to go directly to the sync apps/music screen?

    Well, it's certainly behaving as though the phone that was backed up was synced to a different iTunes library.
    I'm going to throw one more thing out there... Yes, you backed it up to this computer... Was the phone previously set up to sync with this computer? Or was it syncing with a different computer and you just backed it up to this one?
    You may have to end up setting it up as a new device and rebuilding the phone by manually re-syncing your data, apps, music, etc. to the phone.
    Trying to keep your library on a different drive can be tricky. If iTunes starts up and the library isn't available, it may end up generating a new library ID, meaning that you could easily find yourself in exactly the position you're in now...
    I'm curious why there was a need to restore your phone to begin with... It may not have any bearing on this at all, but it could.

Maybe you are looking for

  • How do I share iTunes library between different versions of iTunes

    I have an old motorola powerPC based iMac which is running Mac OS 9. The latest iTunes version for the old Mac is 9.2.  I also have various computers including an Intel Mac and other Windows PCs that run the latest iTunes version 10.6.3. When I tried

  • IMac Nvidia GeForce 8800 GS Drivers

    I am running XP Professional via Boot Camp. I run XP so I can play America's Army since it is a Windows only based game. The problem I am having is when I expand Americas Army full screen it completely locks up my iMac and I have to hold down the pow

  • IPhone 3.0, the WiFi Login Panel and passwords that change daily

    Does anybody else use their 3.0 iPhone regularly with a WiFi LAN that requires web login - AND the password changes daily? I connect daily to one that has Cisco authentication that I must get through each day with a different password. The first few

  • Function returning cursor..

    i have written a function which returns me a cursor ... CREATE OR REPLACE function getAdvisorInfo(advID IN char)     RETURN types.ref_cursor AS atp_cursor types.ref_cursor; BEGIN OPEN atp_cursor FOR     select ad.Advisor_id, ad.Bundle_code, bd.bundle

  • Using 'this' in a function

    I have a function ('checkDrop') which I call in 'onRelease' for several draggable MCs. At present I've hard coded each draggable MC , eg: drag2_mc.onRelease = function() { stopDrag(); checkDrop(); if (HITtest == 2 or HITtest == 1) { this.gotoAndStop(