Backup and restore sequences

Поиск
Список
Период
Сортировка
PostgreSQL 9.0.1/pgAdminIII 1.12.1

I want to copy selected tables from one database to another and maintain the sequences which I originally setup with:

CREATE SEQUENCE venues_id_seq START WITH 1122;
ALTER TABLE venues ALTER COLUMN id SET DEFAULT nextval('venues_id_seq');

... along with their current values, which have been augmented since the database was setup. When I backup via
pgAdminIIIthe sequences are not even included. I also can't find anything in: 

man pg_dump

... which specifies sequences.

gvim


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

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: Inserting data from one database to another using stored functions
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Backup and restore sequences