Re: backup postgres database

From: Jon Hassen <jhassen(at)azstarnet(dot)com>
To: arun kv <arun(at)library(dot)iisc(dot)ernet(dot)in>, PGSQL <pgsql-php(at)postgresql(dot)org>
Subject: Re: backup postgres database
Date: 2002-03-13 17:46:21
Message-ID: l03130303b8b53ef1f49e@[169.197.62.6]
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

try using the command:

/usr/local/pgsql/bin/pg_dumpall > outputfile

('outputfile' is the name you want for your file) to make a backup of your
database. put that copy where your new site will be. then use the new site
to restore this file as if it belonged there in the first place by using
the command:

/usr/local/pgsql/bin/psql -d template1 -f outputfile

('outputfile' is the name you used in step 1) this restores the file you
created in the first step to the new installation.

that's it. you might have to run initdb, or initlocation on the new
installation's data directory.

Jon Hassen

At 7:42 PM +0530 3/13/02, arun kv wrote:
>hello sir,
> i have a postgresql database in one system and want to transfer
>the same to another system. i am not finding a way to transfer this
>database from one system to another.if i transfer the file in
>/var/lib/pgsql/libdatabase them it gives error.how shall i transfer
>database.
> another thing. how to take up backups of the database on the system.
>pls help me as i am new to postgresql
> thanking you
> Arun
>
>
>---------------------------(end of broadcast)---------------------------
>TIP 4: Don't 'kill -9' the postmaster

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Marcelo Pereira 2002-03-13 18:33:37 Re: backup postgres database
Previous Message Josh Berkus 2002-03-13 17:44:30 Re: backup postgres database