Re: Nicer dump files?

Поиск
Список
Период
Сортировка
От Manfred Koizar
Тема Re: Nicer dump files?
Дата
Msg-id 5c56pu8rr1f3rv8nvbjevd9rev96ar1lh3@4ax.com
обсуждение исходный текст
Ответ на Nicer dump files?  (Gerhard Häring <haering_postgresql@gmx.de>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Relation 0 does not exist
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Adding "on delete cascade" after table creation ?