Version 1 (modified by 8 years ago) ( diff ) | ,
---|
Postgres HowTo backup and restore
See: https://www.postgresql.org/docs/9.1/static/backup-dump.html
Backup
pg_dump -U username dbname > outfile
Restore
psql -U username dbname < infile
Note:
See TracWiki
for help on using the wiki.