Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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)

...