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 pgAdminIII the sequences are not even 
included. I also can't find anything in:

man pg_dump

... which specifies sequences.

gvim


--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to