Обсуждение: Automatic Backup Script

Поиск
Список
Период
Сортировка

Automatic Backup Script

От
RPK
Дата:
Are there any ready-made backup scripts available that can backup PostgreSQL
database?

--
View this message in context: http://www.nabble.com/Automatic-Backup-Script-tf2095554.html#a5776431
Sent from the PostgreSQL - general forum at Nabble.com.


Re: Automatic Backup Script

От
John Meyer
Дата:
RPK wrote:
> Are there any ready-made backup scripts available that can backup PostgreSQL
> database?
>
Have you checked out pgAdmin yet?

--
John Meyer
http://pueblonative.wordpress.com
http://pueblonative.110mb.com/board

Re: Automatic Backup Script

От
RPK
Дата:
John,

I am using pgAdminIII 1.4.6. But I want to automate the backup procedure
from within my VB.NET 2003 application. I want to run the script after n
minutes.


John Meyer wrote:
>
> RPK wrote:
>> Are there any ready-made backup scripts available that can backup
>> PostgreSQL
>> database?
>>
> Have you checked out pgAdmin yet?
>
> --
> John Meyer
> http://pueblonative.wordpress.com
> http://pueblonative.110mb.com/board
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: explain analyze is your friend
>
>

--
View this message in context: http://www.nabble.com/Automatic-Backup-Script-tf2095554.html#a5776574
Sent from the PostgreSQL - general forum at Nabble.com.


Re: Automatic Backup Script

От
"Merlin Moncure"
Дата:
> I am using pgAdminIII 1.4.6. But I want to automate the backup procedure
> from within my VB.NET 2003 application. I want to run the script after n
> minutes.

the database is backed up with the pg_dump utility.  make a batch file
which has the line:
pg_dump my_database
and automate it with the windows task scheduler.

merlin