Re: pg_dump ORDER BY

From: "Joel Burton" <jburton(at)scw(dot)org>
To: Nabil Sayegh <nsmail(at)sayegh(dot)de>
Cc: "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: pg_dump ORDER BY
Date: 2000-12-08 01:46:33
Message-ID: 3A2FCCF9.18817.10C512@localhost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

> Hi,
>
> I did a mistake lastnight.
> I have 2 databases of the same structure: db1, db2
>
> Now I need to pg_dump them and do a diff.
> Therefor I need the contents of the tables to be ordered.

If you have databases (db1 and db2) and two tables in each
(t1 and t2), I think it would be easiest to dump each table
independently (pg_dump -t t1 d1 > /tmp/d1t1) and diff that to its
sister table.

You could pretty easily turn diff into COPY input.

If you do a full pg_dump of the database, you'll get non-data stuff,
like all of the sequences, index declarations, etc. (Unless *that's*
what you want to reconcile.)

--
Joel Burton, Director of Information Systems -*- jburton(at)scw(dot)org
Support Center of Washington (www.scw.org)

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Joel Burton 2000-12-08 01:48:15 Re: Install order
Previous Message Joel Burton 2000-12-08 01:37:56 Re: Uninstall Everything.