Re: PostgreSQL, WIndows, regular backup

From: Zlatko Matić <zlatko(dot)matic1(at)sb(dot)t-com(dot)hr>
To: <pgsql-general(at)postgresql(dot)org>, <SCassidy(at)overlandstorage(dot)com>
Subject: Re: PostgreSQL, WIndows, regular backup
Date: 2005-07-01 07:56:16
Message-ID: 001901c57e12$8945a0c0$b8851dc3@zlatko58zaczpv
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

It works great!
Thanks!

----- Original Message -----
From: <SCassidy(at)overlandstorage(dot)com>
To: <pgsql-general(at)postgresql(dot)org>
Sent: Thursday, June 30, 2005 7:45 PM
Subject: Re: [GENERAL] PostgreSQL, WIndows, regular backup

This works to put the date in the filename on Windows 2000:

In a .bat file:

@echo off
for /f "tokens=1-4 delims=/ " %%i in ("%date%") do (
set dow=%%i
set month=%%j
set day=%%k
set year=%%l
)
set datestr=%month%_%day%_%year%
echo datestr is %datestr%

set BACKUP_FILE=MYDB_%datestr%
echo backup file name is %BACKUP_FILE%

This creates a filename MYDB_mm_dd_yy. When you run the little test .bat
script above, you will get:

datestr is 06_30_2005
backup file name is MYDB_06_30_2005

Hope this helps.
Susan

Zlatko Matić
<zlatko(dot)matic1(at)sb(dot)t-com To:
<pgsql-general(at)postgresql(dot)org>
.hr> cc:
Sent by: Subject: [GENERAL]
PostgreSQL, WIndows, regular backup

|-------------------|
pgsql-general-owner(at)pos | [ ] Expand Groups |
tgresql.org |-------------------|

06/30/2005 09:52
AM

Hello.
I would appreciate if someone helps me to resolve this problem about
regular backups on Windows. I have a batch file (.bat) for backup, but
don't know how to include timestamp in backup file name. In this way I
allways have only one, the most recent, backup file. I want Windows to
produce regular backups with timestamp in file's name...The script is the
following:
pg_dump -f D:\MYDB_BCP -Fc -x -h localhost -U postgres MYDB
How to include timestamp ?

----------------------------------------------------------------------------------------------
See our award-winning line of tape and disk-based
backup & recovery solutions at http://www.overlandstorage.com
----------------------------------------------------------------------------------------------

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

In response to

Browse pgsql-general by date

  From Date Subject
Next Message KubaTyszko 2005-07-01 09:05:07 postgres and stored procedures with in/out parameters
Previous Message Zlatko Matic 2005-07-01 07:55:47 Re: how to use pg_dump and then restored onto development server