Skip to content

Instantly share code, notes, and snippets.

@jufemaiz
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jufemaiz/98e6dac1b1e4377fe6cf to your computer and use it in GitHub Desktop.
Save jufemaiz/98e6dac1b1e4377fe6cf to your computer and use it in GitHub Desktop.
Backup / Recover PostgreSQL
pg_dump -h {hostname} -U {user-name} -W -v {source_db} -f {postgresql-backup-`date +"%Y%m%d%H%M%S%z"`.sql}
psql -U {username} -W -d {database_name} -f {filename}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment