Re: Nicer dump files? - Mailing list pgsql-general

From Manfred Koizar
Subject Re: Nicer dump files?
Date
Msg-id 5c56pu8rr1f3rv8nvbjevd9rev96ar1lh3@4ax.com
Whole thread Raw
In response to Nicer dump files?  (Gerhard Häring <haering_postgresql@gmx.de>)
List pgsql-general
On Wed, 25 Sep 2002 22:54:16 +0000 (UTC), Gerhard Häring
<haering_postgresql@gmx.de> wrote:
>Ok, now I have played with psql and created a few tables. If I use
>pg_dump I get relatively awkward scripts that look like:
>
>       CREATE TABLE "person" (
>        "id" integer DEFAULT nextval('"person_id_seq"'::text) NOT NULL,
>        "login" character varying(20) NOT NULL,
>        ...
>
>Is there a way to get a nicer looking script that will look like:
>
>    create table person (
>        id int serial,
>        login varchar(20) not null
>        ...

Gerhard,

pg_dump --help
...
  -n, --no-quotes          suppress most quotes around identifiers

Is this what you want?

Servus
 Manfred

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Relation 0 does not exist
Next
From: Stephan Szabo
Date:
Subject: Re: Adding "on delete cascade" after table creation ?