RESTORE VALIDATE, then what?

Hi,
Everyday I do,
LIST BACKUPSET SUMMARY COMPLETED AFTER...
VALIDATE BACKUPSET XXXX,XXXX...
RESTORE VALIDATE CONTROLFILE
RESTORE VALIDATE SPFILE
RESTORE VALIDATE ARCHIVELOG FROM TIME 'XX-XXX-XX'
RESTORE VALIDATE DATABASE
1: Assuming the Server crashed, what is the quickest way to bring the database up and running, if on another server, and how to revert back to the original server.
2: I'm a bit confused as to everyday I do backup/validate, suppose I don't have a cold backup, but I've archivelog for 1 month, how do I restore/recover the database, do I need a timely cold backup as well? (current backup includes, daily incrementally updated, and weekly hot backup).

Regarding your question 2: it makes not one jot of difference whether you're doing hot, cold or tepid backups. Complete recovery always demands (a) some baseline to restore from (b) all the redo taken from the time that baseline was created until now (whenever "now" is).
If you don't backup for a month, no worries: so long as you've got one month's-worth of redo safe and available, you'll (or RMAN will) be able to restore the one-month-old backup and roll it forward to the current time by recovering it (that is, applying redo to it).
Of course, that will be slow. The purpose of taking any sort of backup (hot or cold, it's irrelevant) is to provide a baseline which is a little nearer to "now" than before, and thus to obviate the need to apply so much redo (which is generally a lot slower to do than restoring a more up-to-date backup is).
Specifically, therefore, no: you don't need "a timely cold backup as well". You just need to be taking regular physical backups of the entire database at a pace that suits your recovery needs. Your weekly hot backup is a perfectly acceptable baseline: there's no need to do cold backups unless you feel the need to do so. They are not intrinsically safer of more recoverable than a hot backup, provided only that your redo is always kept safe.

Similar Messages

  • HT1212 after restoring iphone then what

    after i restore ihpone then whats next???

    Either Restore from Backup  >  http://support.apple.com/kb/ht1766
    Or Sync what Data / Information / Apps / Music... etc... you want via iTunes...
    SYNCING with iTunes
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/

  • Restore and then what?

    I have had an iPhone 3G for almost two years and a few days ago upgraded to iPhone 4 (which I love); however, I was letting my grandson use my 3G to play games etc., BUT he decided to enter a passcode and the phone got locked and we couldn't unlock it. We restored it and when we synced it (on the same computer it has always been synced with) all the games disappeared. Is there a way to load them back into that phone? I paid for them and since the phone is still under my control I assume I still have the rights to use them - is that correct. If there is a way to reload those games I would appreciate the info. Now, saying all that, I am not a tech genius so common language would be really appreciated. Thanks in advance.

    Thanks for your reply. I connected the iPhone to my computer again - itunes came up and it synced. I clicked on all the games that I wanted to load back on the 3G but I didn't find the button that you said to click to do that. Where is it located?
    Again, thanks.

  • I was updating my ipad, and then it said "fail to Restore" and then it wont come up under devices. what do i do?

    as i was updating my ipad 2, it told me that it failed to restore, and then it wint come up under devices on itunes, the ipad also wont work, what can i do ?

    This was copied from the Apple support site concerning unresponsive iDevices.
    If the above steps do not resolve the issue, or the if the screen remains black or shows a persistent Apple logo, try restoring with iTunes
    Connect the device to your computer and open iTunes.
    If the device appears in iTunes, select and click Restore on the Summary pane. Learn more about restoring iOS software.
    If the device doesn't appear in iTunes, try to force the device into recovery mode.
    More than likely, you will have to restore the device now. You may need to use recovery mode as mentioned in step 3.
    Here is the link to the support article.
    http://support.apple.com/kb/TS3281

  • HT201269 When restoring my backup from my old iphone via my computer to my new iphone, it gets all the way through the restore and then at the end it says there was an error and doesn't restore. Doesn't say what error.

    When restoring my backup from my old iphone via my computer to my new iphone, it gets all the way through the restore and then at the end it says there was an error and doesn't restore. Doesn't say what error.

    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download
    Also... See Here  >  Configure security software

  • HT4061 my iphone dose not start it was stuck in restoring mode then it shut down and it won't start what shall i do

    my iphone dose not start it was stuck in restoring mode then it shut down and it won't start what shall i do

    If this has happened more than once the problem is likely on your PC.
    See here: http://www.apple.com/support/iphone/assistant/itunes/

  • HT1339 what if you click restore and the progress bar is interrupted and says that your ipod is busy? Then what?

    what if you click restore and the progress bar is interrupted and says that your ipod is busy? Then what?

    Reset the iPod - Press Menu and Select simultaneously for about 10 secs or till the Apple Logo comes ON.
    Disconnect the iPod, and all other USB devices
    connect the iPod to another USB Port, and not to a USB hub. (Never connect the iPod to the USB port on the Keyboard.)
    Run Disk Utility -> First Aid->Erase (to correct any filesystem corruption.
    Then run iTunes and Restore.

  • HT1414 the iphone "i phone" could not be restored the unknown error occurd (1015) then what can i do pleas tell me the solution

    the iphone "i phone" could not be restored the unknown error occurd (1015) then what can i do pleas tell me the solution

    Error 1015 is typically related to downgrading software.
    Is your iPhone jailbroken or hacked?  If so, it's likely "bricked".
    If not, the highest iOS the iPhone can use is version 4.2.1.

  • Restore validate database

    Hi,
    1) I've 2 databases, which are scheduled for weekly full online backup(from scheduler/rman) on fri. and sat. respectively, and there is daily incrementally updated backup, plus the archivelogs on both the database.
    When I do restore validate database, in one database validate restores the last full online backup, whereas in the other it scans the datafile copies.
    I'm just curious as to what algorithm rman follows to validate the database restore?
    2) Is there some way to automate this VALIDATE in a script, I'm finding it real pain to first LIST BACKUP SUMMARY, identify BACKUPSET keys, then manually key in to
    - VALIDATE BACKUPSET XXXX,XXXX,XXXX
    - RESTORE VALIDATE CONTROLFILE
    - RESTORE VALIDATE SPFILE
    - RESTORE VALIDATE ARCHIVELOG FROM TIME 'XX-XXX-XX'
    - RESTORE VALIDATE DATABASE

    >>
    When I do restore validate database, in one database validate restores the last full online backup, whereas in the other it scans the datafile copies.
    >>
    What do you mean by datafile copies? Are you talking about RMAN image copies?
    RESTORE... VALIDATE causes RMAN to select existing backups that it would use to perform a RESTORE operation, and scan them all to ensure that they are present and free of corruption.
    RESTORE... PREVIEW identifies the backups which RMAN will use to perform any RESTORE operation. Output from a RESTORE... PREVIEW is in the same format as the output of the LIST command.
    Oracle prefers image copies over backupsets, if exists, for restore and recovery.
    Jaffar

  • Restore Validate Database vs Backup Validate Database

    Hi,
    I want to add the following sentence after taking the backup using following command (backup as compressed backupset database plus archivelog;)
    restore database validate;
    or
    backup validate database;
    which one is best?

    It depends on what you are trying to accomplish, as per documentation:
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta009.htm#sthref141BACKUP .. VALIDATE: Causes RMAN to scan the specified files and verify their contents, testing whether this file can be backed up. RMAN creates no output files. Use this command periodically to check for physical and logical errors in database files.
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta051.htm#sthref796
    RESTORE... VALIDATE causes RMAN to select existing backups that it would use to perform a RESTORE operation, and scan them all to ensure that they are present and free of corruption.>
    Guessing what you're trying to do, I recommend:
    backup check logical as compressed backupset database plus archivelog;
    restore validate database;
    CHECK LOGICAL. Tests data and index blocks that pass physical corruption checks for logical corruption, for example, corruption of a row piece or index entry. If RMAN finds logical corruption, then it logs the block in the alert.log and server session trace file. HTH
    Enrique
    PS If you have access to Metalink see Note:388422.1 Top 10 Backup and Recovery best practices.
    Edited by: Enrique Orbegozo on Dec 17, 2008 4:21 PM

  • RESTORE VALIDATE possible prior to an OPEN RESETLOGS?

    Is it possible to perform a RESTORE VALIDATE to a point in time prior to an OPEN RESETLOGS?
    RMAN> list incarnation;
    List of Database Incarnations
    DB Key  Inc Key DB Name  DB ID            STATUS  Reset SCN  Reset Time
    1       1       AA02     2787653425       PARENT  1          29.FEB.2008 15:56:3
    3
    2       2       AA02     2787653425       CURRENT 182455     29.FEB.2008 16:55:5
    5
    RMAN> run
    2> {
    3> set until time = "to_date('29.FEB.2008 16:00:00','DD.MON.YYYY HH24:MI:SS')";
    4> restore database validate;
    5> }
    executing command: SET until clause
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 06/11/2009 11:13:35
    RMAN-20207: UNTIL TIME or RECOVERY WINDOW is before RESETLOGS timeUsing the RESET DATABASE TO INCARNATION clause it should be possible to perform the RESTORE however that is not the intention (yet), only to RESTORE VALIDATE.

    That's what I'm finding... I don't want to have to restart the database to reset the incarnation to have to test restore a backup prior to open resetlogs (no catalog only controlfile used).
    "If RMAN is connected NOCATALOG, then you can only specify TO INCARNATION if the database is mounted and the control file contains a record of the prior incarnation. If you do not run RESET DATABASE, RMAN recovers to the last incarnation recorded in the control file."
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcmsynta050.htm
    Yet another reason to have a RMAN catalog.

  • I have a hdd from late 2009 that I upgraded from leopard to snow leopard to lion to mountain lion.  I want to upgrade the hdd to ssd.  Do I need to buy a new copy of mountain lion to install on the ssd?  If not, then what is the procedure to transfer?

    I have a hdd from a late 2009 mbp.  I upgraded from leopard to snow leopard to lion to mountain lion.  Now I want to upgrade to a ssd.  Do I need to purchase a new copy of mountain lion to go on my new ssd? If I don't, then what is the procedure to transfer mountain lion with my 4 user accounts onto the new ssd from the hdd?
    I'm confused on if I can use the recovery hd on a thumb drive to install mountain lion on my ssd.  Will it be pheasible with so many OS X upgrades?  And then how do I get my user accounts onto the ssd from the hdd.  Do I use migration assistant?  Do I need to make a time machine backup first?  Should I use something called Carbon Clone or something like that?
    Thanks for reading

    If you have a cable that connects and external HDD to the MBP, it will do.  If it is something like this, an  enclosure will not be needed for the swap:
    An enclosure allows you to use your old HDD for storage or backup purposes.  The cable will not. 
    Here are instructions as to how the swap can be performed using DISK UTITY.  Substitute You cable for the enclosure in same:
    INSTALLING A NEW HDD IN A MBP
    1. Make certain that you have backed up all of your important data.
    2. You will need a HDD enclosure.  One with a USB connection will do.  A 9 pin Firewire is better.
    3. Install your new drive in the enclosure and connect it to your MBP.
    4. Open DISK UTILITY>ERASE.  From the left hand column drag the new drive into the 'Name' field.  Make sure that the format is 'Mac OS Extended (Journaled)'.  Click on the 'Erase' button.
    5. Click on the 'Restore' button (on top).  Drag the old drive into the 'Source' field and the new drive into the 'Destination'  field.  Click on the 'Restore' button on the bottom right hand corner.
      Depending upon the amount of data you are transferring, this may take a couple hours or more.  A Firewire will speed up the transfer.  This will result in both drives having identical information on them.
    6. After the data transfer has completed, you may swap the drives.  Start the MBP and you have finished the installation.  The initial boot may take a bit longer than you are accustomed to, but that is normal.
    7. When you are satisfied that the new hard drive if functioning properly, you can erase the old drive and use it for any needs that you may have.
    If there is any confusion on your part, post back.
    Ciao.

  • HT1414 is it necessary to put in sim card in iphone at the time of restore ? My phone is stolen and i am concerned that if somebody will restore it then i will not be able to find it even using find my phone.

    is it necessary to put in sim card in iphone at the time of restore ? My phone is stolen and i am concerned that if somebody will restore it then i will not be able to find it even using find my phone.

    There is no way that you can locate the iphone at all.
    The thief can restore it and use it as their own.  You will never know or be able to tell what they do with it.
    Very sorry.  Your iphone is gone.
    Report it to the police and change your passwords.

  • HT201263 I went to do the latest update on my iphone 4s, and it said to connect to itunes so I did and continued to click restore and then it updated my phone through itunes. Then after about 40 minutes of it updating it still has the connect to itunes sc

    I went to do the latest update on my iphone 4s, and it said to connect to itunes so I did and continued to click restore and then it updated my phone through itunes. Then after about 40 minutes of it updating it still has the connect to itunes screen on. It won't go away and I have tried restarting and turning off my phone various ways various times. I don't know what to do!

    Once the Device is asking to be Restored with iTunes... it is too late to save anything... and you must continue with the Recovery...
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Take your time... Pay particular attention to Steps 3 and 4.
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766
    Note:
    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download

  • HT201210 iTunes has detected an iphone in recovery mode. You must restore this iPhone before it can be used with iTunes. iphone could not be restored. Then aAn unknown error occuired(1604)

    when I power on it shows go itune logo starts. Then I tried to download restore and update it shows Tunes has detected an iphone in recovery mode. You must restore this iPhone before it can be used with iTunes. iphone could not be restored. Then an unknown error occuired(1604) shows.an unknown error occuired(1604). Please help me and how can I restore the phone OS. Regards

    It also happened to me. What I did was to put my USB connector at the back of my PC (the main USB port) then I open my iTunes again and Viola, it solves my problem.

Maybe you are looking for

  • I have 5.0 on WIN XP, but the format is the old 3.6 version. How do I get the new format as in 4.0?

    I installed 5.0 on my new computer running XP Pro, but the screen format reverts back to the 3.6 version. According to what I see on the Firefox home page the screen format of 5.0 should match what I had in the 4.0 version. Can this be changed someho

  • Search for a String in a File?

    hi all is there a methid in java with which i can open a file and search for a specified string in the file? i also have to replace the String then. Thanks angela

  • Right() and Left() method

    Hello, Is there an Right(x) and left(x) alternative for the VB Right and Left. The meaning is to return the x Right or x Left characters from a String. kind regards

  • Creating a forum in portal

    Hi masters! I have to create a forum in sap portal and where can i start? Have you any documentation or suggestion to start somewhere? Thanks.

  • Installing desktop version of Story Plus

    When I attempt to install the desktop version of Story Plus, there is a "download error".  The help icon takes me to the Adobe AIR 3 page on adobe.com.  I already have the latest version of AIR installed. How to I install the desktop version?  I have