ARG: Help recovering from hotbackup

Ask a Question related to Oracle Server, Design and Development.

  1. #1

    Default ARG: Help recovering from hotbackup


    We are trying to restore from a hotbackup, we have all datafiles, the
    trace control file, and all archive logs. However, we did not back up
    the redo logs. We are trying to rebuild the control file and it is
    complaining about the redo logs.

    Can anyone offer any suggestions?

    Thx,
    CC



    -----------== Posted via Newsfeed.Com - Uncensored Usenet News ==----------
    [url]http://www.newsfeed.com[/url] The #1 Newsgroup Service in the World!
    -----= Over 100,000 Newsgroups - Unlimited Fast Downloads - 19 Servers =-----
    Chucky Guest

  2. Similar Questions and Discussions

    1. recovering deleted pages
      Is it possible to recover pages that had not been published in Contribute3 that were deleted?
    2. Need help recovering
      We had a significant production outage with a box running 8.0 Beta 4, 140GB data, 190GB index. We think it was a bad RAID controller card. Our...
    3. Recovering from a time out
      Is it possible to *gracefully* recover from php timing out? For example, uploading a large file, and php times out, so display "Oops Timed out"...
    4. HotBackup Dilema
      "Startup" on its own means 'startup open', so the command is attempting to completely open the database. It would appear, however, that a...
    5. Recovering a master-site
      Hello, I'm running on 8.1.7.2. I have a 12-way master-master replication environment (not originally implemented by me). I want to convert...
  3. #2

    Default Re: Help recovering from hotbackup


    "Chucky" <chuck.carson@syrrx.com> wrote in message
    news:3E027239.1090004@syrrx.com...
    >
    > We are trying to restore from a hotbackup, we have all datafiles, the
    > trace control file, and all archive logs. However, we did not back up
    > the redo logs. We are trying to rebuild the control file and it is
    > complaining about the redo logs.
    >

    I'm *sure* I've answered this at length just two days ago.

    You don't have a backup of the online redo logs because they are never,
    ever, ever, ever, ever backed up. Doing so is meaningless and completely
    unnecessary, and under certain circumstances can induce data loss.

    When you run the controlfile trace script, you need to make sure that it is
    the RESETLOGS version (assuming 9i -and if it isn't 9i, I explained in my
    earlier post precisely how to edit the single script produced in 8i so that
    it is a resetlogs variant). The resetlogs command re-creates missing online
    redo logs for you.

    And I'm guessing that you still haven't downloaded the backup and recovery
    document I wrote, and posted about here two days ago either, because the
    issue is covered there (I'm sure).

    Resetlogs, laddie. Resetlogs.

    Regards
    HJR



    > Can anyone offer any suggestions?
    >
    > Thx,
    > CC
    >
    >
    >
    > -----------== Posted via Newsfeed.Com - Uncensored Usenet News
    ==----------
    > [url]http://www.newsfeed.com[/url] The #1 Newsgroup Service in the World!
    > -----= Over 100,000 Newsgroups - Unlimited Fast Downloads - 19 Servers
    =-----


    Howard J. Rogers Guest

  4. #3

    Default Re: Help recovering from hotbackup

    "Howard J. Rogers" <howardjr2000@yahoo.com.au> wrote in message
    news:DwvM9.6750$jM5.18883@newsfeeds.bigpond.com...
    >
    > "Chucky" <chuck.carson@syrrx.com> wrote in message
    > news:3E027239.1090004@syrrx.com...
    > >
    > > We are trying to restore from a hotbackup, we have all datafiles, the
    > > trace control file, and all archive logs. However, we did not back up
    > > the redo logs. We are trying to rebuild the control file and it is
    > > complaining about the redo logs.
    > >
    >
    >
    > I'm *sure* I've answered this at length just two days ago.
    >
    > You don't have a backup of the online redo logs because they are never,
    > ever, ever, ever, ever backed up. Doing so is meaningless and completely
    > unnecessary, and under certain circumstances can induce data loss.
    >
    > When you run the controlfile trace script, you need to make sure that it
    is
    > the RESETLOGS version (assuming 9i -and if it isn't 9i, I explained in my
    > earlier post precisely how to edit the single script produced in 8i so
    that
    > it is a resetlogs variant). The resetlogs command re-creates missing
    online
    > redo logs for you.
    >
    > And I'm guessing that you still haven't downloaded the backup and recovery
    > document I wrote, and posted about here two days ago either, because the
    > issue is covered there (I'm sure).
    >
    > Resetlogs, laddie. Resetlogs.
    >
    > Regards
    > HJR
    >
    >
    >
    >
    > > Can anyone offer any suggestions?
    > >
    > > Thx,
    > > CC
    > >
    > >
    > >
    > > -----------== Posted via Newsfeed.Com - Uncensored Usenet News
    > ==----------
    > > [url]http://www.newsfeed.com[/url] The #1 Newsgroup Service in the World!
    > > -----= Over 100,000 Newsgroups - Unlimited Fast Downloads - 19 Servers
    > =-----
    >
    Howard,

    Go easy, please.

    What happens if you lose all the online redo logs (yes I know they are
    supposed to be multiplexed)?

    Yes, you can recover the database, but surely you lose the last few minutes
    worth of updates?

    Regards,
    Paul



    Paul Brewer Guest

  5. #4

    Default Re: Help recovering from hotbackup

    > Howard,
    >
    > Go easy, please.
    >
    > What happens if you lose all the online redo logs (yes I know they are
    > supposed to be multiplexed)?
    Actually, there's only ever one online log (OK, maybe briefly two, whilst
    one's being checkpointed). The other 'online logs' have of course already
    been backed up. That's what ARCH does.
    > Yes, you can recover the database, but surely you lose the last few
    minutes
    > worth of updates?
    >
    Entirely true. But so what? That's not an argument for backing up the
    online logs, is it? It's rather an argument for multiplexing.

    Suppose you backup the online logs, against all Oracle's advice, RMAN's
    in-built capabilities, and my repeated entreaties not to. That was last
    night. How is restoring a 9-hour old 'online log' going to help you *not*
    lose the last transactions that were contained in the real-life online logs?

    If you lose your online logs, you have absolutely no alternative but to do a
    'recover until cancel', cancel when it prompts you for what you know to be
    the missing logs, and then open resetlogs. At which point you get your
    online logs back... but, yes, missing the last dollop of redo, and hence
    with some lost transactions.

    The *only* thing you can do to prevent that is multiplex.

    Backing up the online logs doesn't help at all.

    Cheers
    HJR


    > Regards,
    > Paul
    >
    >
    >

    Howard J. Rogers Guest

  6. #5

    Default Re: Help recovering from hotbackup


    "Howard J. Rogers" <howardjr2000@yahoo.com.au> wrote in message
    news:osNM9.7412$jM5.20748@newsfeeds.bigpond.com...
    > > Howard,
    > >
    > > Go easy, please.
    > >
    > > What happens if you lose all the online redo logs (yes I know they are
    > > supposed to be multiplexed)?
    >
    > Actually, there's only ever one online log (OK, maybe briefly two, whilst
    > one's being checkpointed). The other 'online logs' have of course already
    > been backed up. That's what ARCH does.
    >
    > > Yes, you can recover the database, but surely you lose the last few
    > minutes
    > > worth of updates?
    > >
    >
    > Entirely true. But so what? That's not an argument for backing up the
    > online logs, is it? It's rather an argument for multiplexing.
    >
    > Suppose you backup the online logs, against all Oracle's advice, RMAN's
    > in-built capabilities, and my repeated entreaties not to. That was last
    > night. How is restoring a 9-hour old 'online log' going to help you *not*
    > lose the last transactions that were contained in the real-life online
    logs?
    >
    > If you lose your online logs, you have absolutely no alternative but to do
    a
    > 'recover until cancel', cancel when it prompts you for what you know to be
    > the missing logs, and then open resetlogs. At which point you get your
    > online logs back... but, yes, missing the last dollop of redo, and hence
    > with some lost transactions.
    >
    > The *only* thing you can do to prevent that is multiplex.
    >
    > Backing up the online logs doesn't help at all.
    >
    > Cheers
    > HJR
    >
    >
    >
    > > Regards,
    > > Paul
    > >
    > >
    > >
    >
    >
    Howard,

    Sorry, I didn't phrase the question properly. I meant to ask: 'What happens
    if you lose all the (multiplexed) members of the current online redo log'?

    But you have already answered the question.

    Thanks,
    Paul



    Paul Brewer Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139