> pg_dump -c -f dumpfile.sql dbname
> This will give me the data in its original, pristine form. Note that
using pg_dump this way means that the data gets
> dumped as copy too. Is there a way to dump only the db objects (ie.
tables, sequences, etc) and exclude the data.
The -s (--schema-only) flag dumps only the schema, not the data... At
least according to pg_dump --help
Dmitri