Re: Rescue data after power off - Mailing list pgsql-general

From Craig Ringer
Subject Re: Rescue data after power off
Date
Msg-id 4C4462FA.7040306@postnewspapers.com.au
Whole thread Raw
In response to Re: Rescue data after power off  (Jayadevan M <Jayadevan.Maymala@ibsplc.com>)
Responses Re: Rescue data after power off  (tuanhoanganh <hatuan05@gmail.com>)
List pgsql-general
On 19/07/10 19:02, Jayadevan M wrote:
>> Yesterday my server is power off, when i start server, some of table is
> blank. Is there anyway to rescue it.
> The "Power Off" - is it a planned/regular one? If yes, it makes sense to
> have a normal shutdown of the database before the "Power Off".

... but even if you yank the power plug out of the back of the server,
PostgreSQL should *NEVER* lose comitted data (unless you've told it its
allowed to with a commit delay) and should certainly NEVER damage the
database structure. It's one of PostgreSQL's most important and basic
features.

Unless you have set "fsync=off" in postgresl.conf, in which case the
data loss is entirely your own fault, this should not happen. If you do
not know if fsync is on or off, check by running "SHOW fsync;" in psql
or PgAdmin. It should say "on". If it says "off" then you or someone
else manually told the database not to try to protect your data from
power loss or other failures.

If you have lost data and fsync is on, then most likely your RAID
controller/disks are doing something they should not be like caching
writes in volatile storage. Make sure your RAID controller has write
caching disabled or has a tested and working battery backup unit. If in
doubt, your raid controller should have its write cache turned off, ie
it should be in "write-through" mode and NOT in "write-back" mode.

--
Craig Ringer

pgsql-general by date:

Previous
From: Sam Mason
Date:
Subject: Re: pg_dump and --inserts / --column-inserts
Next
From: Nico
Date:
Subject: Can not change log_min_duration_statement parameter on PG 8.2.4