Re: recovery_target_time ignored or recovery always recovers to end of WAL

From: "Jason L(dot) Buberel" <jason(at)buberel(dot)org>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-general(at)postgresql(dot)org, diogob(at)gmail(dot)com
Subject: Re: recovery_target_time ignored or recovery always recovers to end of WAL
Date: 2007-07-03 04:58:19
Message-ID: 4689D76B.8020104@buberel.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I am now learning that fact, but recall the original scenario that I am
trying to mimic:

1. Person accidentally deletes contents of important table.
2. Admin (me) wants to roll back db state to just prior to that deletion.
3. (Me) Assumes that by creating a recovery.conf file and setting the
target to a an earlier trxn id and restarting the database would simply
do the trick.

So now I think that my scenario should look more like:

1. Person accidentally deletes contents of important table.
2. Admin (me) wants to roll db state back to just prior to that delete.
3. (Me) Performs steps, in addition to creating the recovery.conf with
the selected xid, that will cause the DB to restart at that PITR.

Now all I need to lock down are those 'additional steps needed to force
the recovery process to only recover up to the specified xid and no
further'.

Such as:

- Remove from pg_xlog all of the log files containing transactions that
come after the selected xid?
- Other?

-jason

Tom Lane wrote:
> "Jason L. Buberel" <jason(at)buberel(dot)org> writes:
>
>> ## stopped and started postgres, following syslog output:
>>
>
> You seem to have omitted all the interesting details about what you did
> here; but "stopping and starting" postgres is certainly not intended to
> cause it to discard data. There would need to have been some steps
> involving restoring a previous base backup and rolling forward through
> archived xlog files.
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: In versions below 8.0, the planner will ignore your desire to
> choose an index scan if your joining column's datatypes do not
> match
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Jason L. Buberel 2007-07-03 05:23:02 Re: recovery_target_time ignored or recovery always recovers to end of WAL
Previous Message Tom Lane 2007-07-03 04:41:12 Re: recovery_target_time ignored or recovery always recovers to end of WAL