Skip to content

Instantly share code, notes, and snippets.

@jbub
Created August 9, 2013 08:50
Show Gist options
  • Save jbub/6192139 to your computer and use it in GitHub Desktop.
Save jbub/6192139 to your computer and use it in GitHub Desktop.
postgres dump and restore data
# dump database dbname to dbname.dump
pg_dump -Fc --data-only --disable-triggers dbname > dbname.dump
# restore database dbname to dbname from dbname.dump
pg_restore -U username -h hostname.com --disable-triggers -d dbname dbname.dump
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment