Re: automated pg_dump

Поиск
Список
Период
Сортировка
От Lukas Ertl
Тема Re: automated pg_dump
Дата
Msg-id 20020122130917.O32751-100000@pcle2.cc.univie.ac.at
обсуждение исходный текст
Ответ на automated pg_dump  (Raphael Bauduin <raphael@be.easynet.net>)
Список pgsql-novice
On Tue, 22 Jan 2002, Raphael Bauduin wrote:

> is there a way to make an automated dump with pg_dump when the database
> access is password protected?
> I'd like to run it from a cron. However, I haven't found a way to

I do a daily backup with a shell script like this:

---8<---
#!/bin/sh

export PGUSER=<username>
export PGPASSWORD=<password>

/usr/local/bin/pg_dumpall > dump.sql
---8<---

This should be definitely more documented, as it took me also quite long
to find out :-)

regards,
le

--
Lukas Ertl                             eMail: l.ertl@univie.ac.at
UNIX-Systemadministrator               Tel.:  (+43 1) 4277-14073
Zentraler Informatikdienst (ZID)       Fax.:  (+43 1) 4277-9140
der Universität Wien                   http://mailbox.univie.ac.at/~le/


В списке pgsql-novice по дате отправления:

Предыдущее
От: Raphael Bauduin
Дата:
Сообщение: automated pg_dump
Следующее
От: "Steve Boyle \(Roselink\)"
Дата:
Сообщение: Re: automatically updated an attribute with the current time