Re: Incremental Dump

Lists: pgsql-novice
From: "Herbie McDuck" <herbie(at)faams(dot)net>
To: <pgsql-novice(at)postgresql(dot)org>
Subject: Incremental Dump
Date: 2003-06-26 12:57:03
Message-ID: 008201c33be2$710d98b0$0a0ca8c0@FAAMSPROJECT
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-novice

Is there a proceedure to allow one to compare the database structure of a
deployed database against a developmenmt database to note any structural
change in one or more tables?

--Herbie McDuck


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Herbie McDuck" <herbie(at)faams(dot)net>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Incremental Dump
Date: 2003-06-26 13:52:44
Message-ID: 23915.1056635564@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-novice

"Herbie McDuck" <herbie(at)faams(dot)net> writes:
> Is there a proceedure to allow one to compare the database structure of a
> deployed database against a developmenmt database to note any structural
> change in one or more tables?

I'd try pg_dump -s (schema only) and diff the two dumps. You might have
to do some fooling around if objects were created in different orders in
the two databases, though, since that would affect the dump order.

regards, tom lane


From: Nabil Sayegh <postgresql(at)e-trolley(dot)de>
To: pgsql-novice <pgsql-novice(at)postgresql(dot)org>
Cc: Herbie McDuck <herbie(at)faams(dot)net>
Subject: Re: Incremental Dump
Date: 2003-06-26 14:05:29
Message-ID: 1056636328.1270.2.camel@billy
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-novice

Am Don, 2003-06-26 um 15.52 schrieb Tom Lane:

> I'd try pg_dump -s (schema only) and diff the two dumps. You might have
> to do some fooling around if objects were created in different orders in
> the two databases, though, since that would affect the dump order.

I'd also remove all comments:

pg_dump -s dbname |egrep -v "^\-\-"

HTH
--
e-Trolley Sayegh & John, Nabil Sayegh
Tel.: 0700 etrolley /// 0700 38765539
Fax.: +49 69 8299381-8
PGP : http://www.e-trolley.de


From: "Herbie McDuck" <herbie(at)faams(dot)net>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Incremental Dump
Date: 2003-06-26 16:58:57
Message-ID: 009001c33c04$3c35f250$0a0ca8c0@FAAMSPROJECT
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-novice

Well Tom, the two databases are production and development. The table create
sequence should be the same.

Thanks for the insight !!

Herbie McDuck

----- Original Message -----
From: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Herbie McDuck" <herbie(at)faams(dot)net>
Cc: <pgsql-novice(at)postgresql(dot)org>
Sent: Thursday, June 26, 2003 6:52 AM
Subject: Re: [NOVICE] Incremental Dump

> "Herbie McDuck" <herbie(at)faams(dot)net> writes:
> > Is there a proceedure to allow one to compare the database structure of
a
> > deployed database against a developmenmt database to note any structural
> > change in one or more tables?
>
> I'd try pg_dump -s (schema only) and diff the two dumps. You might have
> to do some fooling around if objects were created in different orders in
> the two databases, though, since that would affect the dump order.
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: the planner will ignore your desire to choose an index scan if your
> joining column's datatypes do not match