Changes between Initial Version and Version 1 of Postgres HowTo backup and restore
- Timestamp:
- 08/30/16 12:13:05 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Postgres HowTo backup and restore
v1 v1 1 = Postgres HowTo backup and restore 2 3 Tags: [[Postgres]] [[HowTo]] 4 5 See: [[https://www.postgresql.org/docs/9.1/static/backup-dump.html]] 6 7 == Backup 8 {{{ 9 pg_dump -U username dbname > outfile 10 }}} 11 12 == Restore 13 {{{ 14 psql -U username dbname < infile 15 }}} 16 17 [[BackLinks]]