What's the correct way to copy entire database (its structure and data) to a new one in pgAdmin?

link|improve this question

feedback

6 Answers

up vote 132 down vote accepted

Postgres allows the use of any existing database on the server as a template when creating a new database. I'm not sure whether pgAdmin gives you the option on the create database dialog but you should be able to execute the following in a query window if it doesn't:

CREATE DATABASE newdb WITH TEMPLATE originaldb OWNER dbuser;

Still, you may get:

ERROR:  source database "originaldb" is being accessed by other users
link|improve this answer
13  
Note that originaldb needs to be idle (no write transactions) for this to work. – synecdoche May 19 '10 at 23:51
2  
this should be marked as best answer!! – Janning May 31 '11 at 11:29
4  
in pgAdmin3, in the Object browser (left) pane, I can select Servers -> (my server) -> Databases, right-click Databases, and select "New Database". One of the options is the template, and the SQL used to create the database is equivalent. It is so much faster than a dump / restore on the same server. – jwhitlock Jun 17 '11 at 15:19
please mark this as the best answer. – Nathan Keller Oct 1 '11 at 5:41
3  
I know this is an old Q/A, but I feel it needs clarification: When @synecdoche says that originaldb must be idle, that means no write possibility at all. "Copying" a database in this fashion does not lock originaldb. PostgreSQL only prevents starting the copy if there are others accessing originaldb--not after the copy starts, so it is possible that another connection could modify the database while the "copy" is occurring. IMHO, this may be the easiest answer, but the "best" would be to use dump/restore. – Josh Jan 25 at 15:20
show 1 more comment
feedback

A command-line version of Bell's answer:

createdb -O ownername -T originaldb newdb

This should be run under the privileges of the database master, usually postgres.

link|improve this answer
This is a nice command BUT you will get createdb: database creation failed: ERROR: source database "conf" is being accessed by other users if you try to do it on a production database and as expected you do not want to shut it down to create a copy. – Sorin Sbarnea Apr 5 at 12:28
Yes, the same caveats apply to this command, as to explicit CREATE DATABASE invocation. Like the comments for Bell's answer above say, the database should be idle. – zbyszek Apr 13 at 15:50
feedback

Don't know about pgAdmin, but pgdump gives you a dump of the database in SQL. You only need to create a database by the same name and do 'psql mydatabase < mydump' to restore all of the tables and their data and all access privileges.

link|improve this answer
Thanks, I needed to create a dump from another server, and it seems this helps: postgresql.org/docs/8.3/interactive/… – egaga May 18 '09 at 11:33
3  
You can even do pg_dump -U postgres sourcedb | psql -U postgres newdb although the efficiency of this technique may be questionable (since you probably end up context switching between reads and writes) – Frank Farmer Jun 7 '10 at 17:19
feedback

In pgAdmin you can make a backup from your original database, and then just create a new database and restore from the backup just created.

Regards

link|improve this answer
this works poorly if you have foreign keys or use schemas – Bradley Jan 16 at 19:49
feedback

What's the correct way to copy entire database (its structure and data) to a new one in pgAdmin?

Ans. CREATE DATABASE newdb WITH TEMPLATE originaldb;

Tried and tested.

link|improve this answer
This requires originaldb to not be in use. Isomorph's method does not. – Bradley Jan 16 at 19:50
feedback

PostgreSQL 9.1.2:

$ CREATEDB new_db_name -T orig_db_name -O db_user;
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.