User Tools

Site Tools


docu:csheet:sysadm:db:psql:dumping

This is an old revision of the document!


Dumping and restoring Postgres databases


This is a little cheatsheet on Postgres SQL dumping and restoring commands

Dumping commands

# dump without username
pg_dump DATABASE
 
# dump using a username and database
pg_dump -Uusername -d DATABASE

Restoring comands

#create user if needed (with password)
createuser -P username
 
dropdb DATABASE
createdb DATABASE
psql --set ON_ERROR_STOP=on DATABASE < INFILE.sql
docu/csheet/sysadm/db/psql/dumping.1623159946.txt.gz · Last modified: 2021/06/08 13:45 by admin