...
Code Block |
---|
psql -U postgres --host ${HOST} --port ${PORT} < fd_db_bkp.bkp
#or if it was gz compressed dumpall,
gunzip -c fd_db_bkp.bkp.gz | psql -U postgres --host ${HOST} --port ${PORT} |
Import data from backup (Oracle)
...
...
Code Block |
---|
psql -U postgres --host ${HOST} --port ${PORT} < fd_db_bkp.bkp
#or if it was gz compressed dumpall,
gunzip -c fd_db_bkp.bkp.gz | psql -U postgres --host ${HOST} --port ${PORT} |
...