Devo duplicare il database esistente incluso il suo schema e la sua struttura su un altro nuovo database. Ne ho bisogno nell'ambiente di comando della shell e non in pgadmin. Per favore, mi aiuti gentilmente.
nohup pg_dump exampledb > example-01.sql
createdb -O postgres exampledbclone_01
il mio utente è "postgres"
nohup psql exampledbclone_01 < example-01.sql
$ pg_dump mydb > db.sql
$ psql -d newdb -f db.sql
CREATE DATABASE my_new_database TEMPLATE my_old_database;