Skip to content

Instantly share code, notes, and snippets.

@biske
Last active July 22, 2019 06:42
Show Gist options
  • Save biske/dbf5ec135a295acfab6a to your computer and use it in GitHub Desktop.
Save biske/dbf5ec135a295acfab6a to your computer and use it in GitHub Desktop.
# Backup database to .sql file:
pg_dump -U admin -h localhost -W --no-owner omh > dump201408191629.sql
# Restore database from .sql file:
psql -U postgres -d omh_development -W -h localhost < ~/dump201410131620.sql
# Description of flags:
# -U username of database user
# -h host
# -d database name
# -W prompt password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment