Re: Postgres recoverey for deleted row of data - Mailing list pgsql-hackers

From Qingqing Zhou
Subject Re: Postgres recoverey for deleted row of data
Date
Msg-id d25g85$cc1$1@news.hub.org
Whole thread Raw
In response to Postgres recoverey for deleted row of data  (csperumal@netscape.net (Srinivasa Perumal))
List pgsql-hackers
"Srinivasa Perumal" <csperumal@netscape.net> writes
>
> hi, is there is way undelete or recover the deleted row in a table in
postgres.iam layman, can anyone help me.
>

Here is one way but I am not sure it is a good one. The precondition is that
you didn't schedule any vacuum on your database.

Since PG never really destory any data as you delete them before you use
vacuum, so you still have chance to find back your data - copy down the
values, and re-insert them again. PG uses visibility rules to fill out the
garbage data, say, the data you deleted. So if you change the visibility
rules, you could see your data again. The visibility rules is in
function/macro HeapTupleSatisfiesVisibility(), return true means the tuple
is visible, else, not.

So if you know how to compile PG kernel, here is how: (1) shutdown your
database and backup your data; (2) change HeapTupleSatisfiesVisibility(),
just let it return "true", which means, it will treat everything as visible,
including deleted rows; compile the kernel; (3) restart your database and
find out the data you want - you may select them into another table; (4)
revert the changes, and restart your database and insert the rows you just
find out.

Regards,
Qingqing







pgsql-hackers by date:

Previous
From: Palle Girgensohn
Date:
Subject: Re: Patch for collation using ICU
Next
From: chamil wijenayake
Date:
Subject: i want to find