Last active
September 15, 2019 18:13
-
-
Save DTailor/5948970 to your computer and use it in GitHub Desktop.
Backup/Restore PostgreSQL Database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List all databases | |
sudo -u postgres psql --list | |
# Create backup file | |
sudo -u postgres pg_dump [database_name] > dumpl.sql | |
# Drop the database | |
sudo -u prostgres dropdb [database_name] | |
# Create a new database | |
sudo -u postgres createdb [new_databse] | |
# Restore data from the backup | |
sudo -u postgres psql [new_database] < dump.sql | |
##################################################### | |
# Backup a single table | |
sudo -u postgres pg_dump --table [table_name] [database_name] > dump.sql | |
# Restore a single table | |
sudo -u postgres psql -f dump.sql [database_name] |
Thanks, it helped me because other commands that i was trying always displayed some errors, this is the simplest way.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The easiest way to make PostgreSQL backup is to use this tool http://postgresql-backup.com/