pg_dump --clean or dropdb? - Mailing list pgsql-admin

From Ray Stell
Subject pg_dump --clean or dropdb?
Date
Msg-id 20080221183939.GA31300@cns.vt.edu
Whole thread Raw
Responses Re: pg_dump --clean or dropdb?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-admin
I have two versions of a db that I'd like to sync from a point-in-time
backup.  One set of data is perfered over the other so the db on the
target system will need to be tossed.

Will pg_dump --clean fix up the target or do I need to dropdb instead?
The favored data is in under 8.2.1 and the target system is 8.2.6.

The doc for pg_dump --clean says it will drop db objects, not the db,
however it looks like it does, though the output order of events is
troubling.  Is there a loop in the create/drop area?.

pgdump.test.dmp came from pg_dump -Fc :

$ strings pgdump.test.dmp
PGDMP
ghiza
8.2.1
8.2.1
ENCODING
ENCODING
SET client_encoding = 'UTF8';
false
STDSTRINGS
STDSTRINGS
SET standard_conforming_strings = 'off';
false
1262
16384
ghiza
DATABASE
CREATE DATABASE ghiza WITH TEMPLATE = template0 ENCODING = 'UTF8';
DROP DATABASE ghiza;
...


pgsql-admin by date:

Previous
From: Tom Lane
Date:
Subject: Re: Stable Release?
Next
From: Tom Lane
Date:
Subject: Re: pg_dump --clean or dropdb?