Re: oid or without oid ... - Mailing list pgsql-novice

From Sean Davis
Subject Re: oid or without oid ...
Date
Msg-id 200705220608.41284.sdavis2@mail.nih.gov
Whole thread Raw
In response to Re: oid or without oid ...  (Raimon Fernandez <coder@montx.com>)
Responses Re: oid or without oid ...
List pgsql-novice
On Tuesday 22 May 2007 06:05, Raimon Fernandez wrote:
> I'm trying with this approach:
>
> create table public.articles( "id" int4 not null default nextval
> ('articles_id_seq'::regclass) , "referencia" varchar not null
> )
>   WITHOUT OIDS;
> ALTER table "public"."articles" OWNER TO "postgres";
> ALTER table "public"."articles" SET WITHOUT CLUSTER;
> alter table "public"."articles" add primary key(id);

And keep in mind that you can use:

id serial

as a shorthand.

Sean

pgsql-novice by date:

Previous
From: Raimon Fernandez
Date:
Subject: Re: oid or without oid ...
Next
From: Raimon Fernandez
Date:
Subject: Re: oid or without oid ...