Re: PostgreSQL force create table / ignore constraints? - Mailing list pgsql-general

From Frank Lanitz
Subject Re: PostgreSQL force create table / ignore constraints?
Date
Msg-id 20121003222242.b7019b9ece0db2da0053e271@frank.uvena.de
Whole thread Raw
In response to PostgreSQL force create table / ignore constraints?  (hartrc <rhart2@mt.gov>)
List pgsql-general
On Wed, 3 Oct 2012 08:12:25 -0700 (PDT)
hartrc <rhart2@mt.gov> wrote:

> Version Postgresql 9.1.6
> OS: SLES 11 64 bit
>
> Background:
> Our developers create database schema in development environment using
> PGAdmin (often using the GUI to generate the DDL).
> We always deploy to production using a script, a single .sql file
> which we execute via psql command line. This allows us to generate an
> output with any errors and have good view of deployment history over
> time.
>
> Issue
> The issue we have is that developers generate the .sql script mainly
> by copying and pasting from PGAdmin's SQL pane. The issue we have is
> then the order of the object creation is important otherwise creation
> of tables and fail when there is a foreign key constraint on another
> table that does not exist (but is created later in the script). This
> is not a big deal in a schema with 3 or 4 tables but when there are 20
> + it is time consuming task to reorder all the create statements.
>
> Can anyone recommend a way of dealing with this? My only other
> thought has been pg_dump although i would prefer if the developers
> could generate the scripts themselves.

What about using pg_dump --schema-only when creating the files? (Or
are you talking about icremental changes?)

Cheers,
Frank

--
Frank Lanitz <frank@frank.uvena.de>

Attachment

pgsql-general by date:

Previous
From: Igor Neyman
Date:
Subject: Re: Postgres will not start due to corrupt index
Next
From: "Rhys A.D. Stewart"
Date:
Subject: user defined XML aggregate not working as (i think) it should