From: | Frederic Massot <frederic(at)juliana-multimedia(dot)com> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Dump all in several files |
Date: | 2005-03-15 15:43:01 |
Message-ID: | d16vq6$csi$1@floppy.pyrenet.fr |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hi,
On the PostgreSQL 6.5 server I use this shell script (see below) for the
backup all of the database in several files, one file per database.
With version 7.3 of PostgreSQL (and the following) the data are not
recorded any more in a repertory with the name of the database, but with
the OID of the basebase.
Do you know how I can adapt this script?
If a developer of pg_dumpall reads this post, is it possible to add to
the command pg_dumpall an option to record one database per file?
Regards.
#! /bin/bash
#
for p in $(find /var/lib/postgres/data/base/ -type d -print -mindepth 1
-maxdepth 1 )
do
base=`basename "$p"`
pg_dump -d -f /var/backup/postgresql/dump_$base $base
done
--
==============================================
| FREDERIC MASSOT |
| http://www.juliana-multimedia.com |
| mailto:frederic(at)juliana-multimedia(dot)com |
===========================Debian=GNU/Linux===
From | Date | Subject | |
---|---|---|---|
Next Message | Lonni J Friedman | 2005-03-15 15:54:01 | Re: Dump all in several files |
Previous Message | Ragnar Hafstað | 2005-03-15 15:41:37 | Re: plpython function problem workaround |