DBAsupport.com Forums - Powered by vBulletin
Results 1 to 8 of 8

Thread: Incomplete recovery

  1. #1
    Join Date
    Nov 2000
    Posts
    101

    Incomplete recovery

    Dear Friends,

    I have 24X7 database. And i have one cold backup, after creating the database. Then, i do ONLINE backup using RMAN on daily basis.
    In case of failure, i should go back to POIN-IN-TIME recovery.

    But, my application requires different setup.

    There is a crash on Wednesday. So, i could back to Tuesday backup.Then, open the database with RESETLOGS. After some time, if i want to go back to MONDAY backup, how to do it in RMAN?

    If i have a cold backp, i can restore whenver i want.Since, it is 24X7 database,i could not shutdown the database.

    Could suggest some thing on this.


    Thanks
    gandhi

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Huh?

    Depends on what type of RMAN backup you are using. Are you doing a full backup every day? Are you doing incremental backups every day? Your backup strategy is not clear.
    Jeff Hunter

  3. #3
    Join Date
    Nov 2000
    Posts
    101
    HI,

    My stratesy is

    SUNDAY : FULL backup
    Monday : Incremental
    Tuesday : Incremental
    Wednesday:Cummulative
    Thursday: Incremental
    Friday : Incremental
    Saturday: Cumulative



    Thanks
    gandhi

  4. #4
    Join Date
    May 2001
    Posts
    736
    After restoring your database from Tuesday incremental and using Resetlogs options what is the fun of going back to Monday backup.

  5. #5
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    I thought when you use incremental backup when you restore you must restore a level 0 incremental backup :-?

  6. #6
    Join Date
    Nov 2000
    Posts
    101
    Hi,

    By mistake, instead of recovering Monday backup, i recoverd Wednesday backup and opened the DB with RESETLOGS. Now, i want to go to MONDAY backup using RMAN.


    Thanks
    gandhi

  7. #7
    Join Date
    May 2001
    Posts
    736
    I think u can't go back to Monday backup as u already resetted the controlfile SCN with Resetlogs options.

  8. #8
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Originally posted by gandhi
    Hi,

    By mistake, instead of recovering Monday backup, i recoverd Wednesday backup and opened the DB with RESETLOGS. Now, i want to go to MONDAY backup using RMAN.


    Thanks
    gandhi
    You have to use the previous incarnation. Get the previous incarnation and the reset SCN from the "list incarnation" rman command. Then:
    Code:
    startup nomount;
    reset database to incarnation 6;
    restore controlfile;
    restore database until scn 666; -- one less than the "reset scn" of the current incarnation
    alter database open resetlogs;
    Jeff Hunter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width