Need help recovering

Ask a Question related to PostgreSQL / PGSQL, Design and Development.

  1. #1

    Default 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 transaction logs are gone but we have raw data.

    How can we recover this data? Can the transaction logs be reset? Can
    we safely set this zero_damaged_pages parameter?

    Ahh!!

    --
    Michael Garriss
    Senior Software Engineer
    Absolute Performance, Inc.


    ---------------------------(end of broadcast)---------------------------
    TIP 7: don't forget to increase your free space map settings

    Michael Garriss 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. Recovering from an interupted stream
      I have a robustness issue to deal with. Say I am streaming a live event and the computer that is doing the streaming goes down, thus losing the...
    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. 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...
    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: Need help recovering

    On Wed, Jan 19, 2005 at 07:39:29AM -0700, Michael Garriss wrote:
    > 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 transaction logs are gone but we have raw data.
    >
    > How can we recover this data? Can the transaction logs be reset? Can
    > we safely set this zero_damaged_pages parameter?
    What transaction logs? Do you mean pg_clog, or pg_xlog? If the former,
    use your latest backup (i.e. forget it, unless you rarely rolled back
    any transaction). If the latter, try pg_resetxlog (you will likely lose
    some things after the last checkpoint, and some indexes may not be in
    correct shape).

    What are the exact error messages you are getting?

    --
    Alvaro Herrera (<alvherre[@]dcc.uchile.cl>)
    "The ability to monopolize a planet is insignificant
    next to the power of the source"

    ---------------------------(end of broadcast)---------------------------
    TIP 2: you can get off all lists at once with the unregister command
    (send "unregister YourEmailAddressHere" to [email]majordomo@postgresql.org[/email])

    Alvaro Herrera 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