Re: Backup and Restore

From: Jonathan Gardner <jgardner(at)jonathangardner(dot)net>
To: "David A(dot) Leedom" <daleedom(at)hightowergroup(dot)com>, pgsql-admin(at)postgresql(dot)org
Subject: Re: Backup and Restore
Date: 2003-06-05 20:22:42
Message-ID: 200306051322.43748.jgardner@jonathangardner.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Thursday 05 June 2003 04:56, David A. Leedom wrote:
> I am using 7.2.x. When I run pg_dump on a database the objects are not
> loaded in the correct dependency order.
>
> Soooo.... when I run pg_restore it fails because objects that are needed
> have not been restored yet (ie. trieds to restore a view that points to a
> table that has not yet been restored). I then monkey around with the Table
> of Contents (TOC) and am able to get the restore to work.
>

Don't use pg_restore. Use psql. Note that pg_dump dumps a bunch of SQL
commands.

This is also a cheap way to "vacuum" the database:

# pg_dump <dbname> | gzip > dump.gz
# dropdb <dbname>
# createdb <dbname>
# gunzip -c dump.gz > psql <dbname>

- --
Jonathan Gardner <jgardner(at)jonathangardner(dot)net>
(was jgardn(at)alumni(dot)washington(dot)edu)
Live Free, Use Linux!
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+36aSWgwF3QvpWNwRAveXAJ4qiMWs7bAsAQoQYmUb0j1bkYOrjwCgwVt6
Gkotl26Q7541ofhVDTP4lQk=
=U7V7
-----END PGP SIGNATURE-----

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Nick Fankhauser 2003-06-05 20:25:21 Re: Backup and Restore
Previous Message Jonathan Gardner 2003-06-05 20:18:54 Re: Urgent: Restoring many schemas in a database