Re: Errors with pg_dump

Поиск
Список
Период
Сортировка
От Bryan White
Тема Re: Errors with pg_dump
Дата
Msg-id 007b01c02fdc$fd6c07c0$2dd260d1@arcamax.com
обсуждение исходный текст
Ответ на Errors with pg_dump  (asbjs@stud.ntnu.no)
Список pgsql-general

>
> I would like to move some data from an older installation of PostgreSQL to
> a newer.  When doing
> "pg_dump persondb > db.out" I get the following error message:
>
> "dumpSequence(person_sek): 0 (!=1) tuples returned by SELECT"
>
> The "person_sek" is a sequence in the database.
>

I believe sequences are implemented as a separate with one row that contains
the sequence parameters and state.  It looks like somehow that one row has
been deleted and pg_dump expects it to be there.

Is this sequence being used by your program and is it functioning correctly?
Can you do a select nextval('person_sek')?

If you need the sequence and you know what its current value and other
parameters should be then I suggest droping and recreating the sequence.


В списке pgsql-general по дате отправления:

Предыдущее
От: Jeff Hoffmann
Дата:
Сообщение: Re: image storing
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Errors with pg_dump