Обсуждение: help:how to rollback postgresql to several minutes ago

Поиск
Список
Период
Сортировка

help:how to rollback postgresql to several minutes ago

От
"刘剑"
Дата:
hello

please help,

 I had written an update sql without where condition to my table, then updated whole table.
So how can i rollback this?


thank you very much.

Re: help:how to rollback postgresql to several minutes ago

От
Michael Paquier
Дата:
On Thu, Apr 14, 2016 at 7:06 PM, =E5=88=98=E5=89=91 <liujian@raintai.com> w=
rote:
>  I had written an update sql without where condition to my table, then
> updated whole table.
> So how can i rollback this?

You need to roll in a backup I am afraid, and you should always have
some. Postgres has no way to replay back directly WAL records, it can
only forward replay. In such circumstances standby nodes with a delay
when applying WAL are useful.
--=20
Michael

Re: help:how to rollback postgresql to several minutes ago

От
Michael Paquier
Дата:
On Thu, Apr 14, 2016 at 9:23 PM, Michael Paquier
<michael.paquier@gmail.com> wrote:
> On Thu, Apr 14, 2016 at 7:06 PM, =E5=88=98=E5=89=91 <liujian@raintai.com>=
 wrote:
>>  I had written an update sql without where condition to my table, then
>> updated whole table.
>> So how can i rollback this?
>
> You need to roll in a backup I am afraid, and you should always have
> some. Postgres has no way to replay back directly WAL records, it can
> only forward replay. In such circumstances standby nodes with a delay
> when applying WAL are useful.

By the way, this is not a bug. Such basic questions had better be
asked on pgsql-novice.
--=20
Michael