in PostgreSQL

PostgreSQL backup

PostgreSQL databases are dumped with the pg_dump command. A simple shell script to do the backup job could be as follows:

#!/bin/sh
pg_dump -h  -U  -f  -Z 9 

Passwords cannot be transfered to the pg_dump as a parameter, you must create a file .pgpass in the home directory of the calling user with the following content:

::::

Write a Comment

Comment

seventeen − four =

This site uses Akismet to reduce spam. Learn how your comment data is processed.