Is there a simple way to create a copy of a database or schema in PostgreSQL 8.1?

I'm testing some software which does a lot of updates to a particular schema within a database, and I'd like to make a copy of it so I can run some comparisons against the original.

link|improve this question

77% accept rate
feedback

3 Answers

up vote 4 down vote accepted

If it's on the same server, you just use the CREATE DATABASE command with the TEMPLATE parameter. For example:

CREATE DATABASE newdb WITH TEMPLATE olddb;
link|improve this answer
Thanks, that did the trick. – Jin Kim Apr 30 '09 at 20:38
this also copied data to the new database... any related method to do it without data??? – Kush Nov 14 '11 at 8:16
feedback

pg_dump with the --schema-only option. (Link goes to 7.4 docs but if you just Google pg_dump you will get links to every version)

link|improve this answer
1  
Replace "7.4" with "current" and you have a link to the latest version. – bortzmeyer May 3 '09 at 18:36
feedback

here is a link to some examples of backing up and restoring. You can use the backup to restore to a different server or whatever

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.