Re: dump & create with a cron job

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: dump & create with a cron job
Дата
Msg-id 11104.1111519059@sss.pgh.pa.us
обсуждение исходный текст
Ответ на dump & create with a cron job  (Jack Miller <jgm@miller-group.net>)
Ответы Re: dump & create with a cron job  ("Keith Worthington" <keithw@narrowpathinc.com>)
Список pgsql-novice
Jack Miller <jgm@miller-group.net> writes:
> The problem is.... if someone is on our web demo at the time that the
> cron job goes off, it does not "dump" the database, it only "adds" the
> data to the database as the existing one.

Evidently you are neglecting to check for failure of the dropdb step.
Perhaps something like

    while ! dropdb active_demo; do
        sleep 10
    done
    createdb active_demo
    /usr/bin/psql active_demo < demo_model.sql > /dev/null

This kinda begs the whole question of interlocking though; won't people
see funny behavior when you do this?

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: timestamp group by bug???
Следующее
От: "Keith Worthington"
Дата:
Сообщение: Re: dump & create with a cron job