What's the correct way to copy entire database (its structure and data) to a new one in pgAdmin?
|
feedback
|
|
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:
Still, you may get:
| |||||||||||||||||||
feedback
|
|
A command-line version of Bell's answer:
This should be run under the privileges of the database master, usually postgres. | |||||
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. | |||||||
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 | |||
|
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. | |||
|
feedback
|