Re: oid or without oid ...
you mean this:
create table public.test(id serial, ref varchar);
I was using Navicat PostgreSQL, a GUI that does lot of things, I'll
try with the command line ...
thanks !
rai
On 22/05/2007, at 12:08, Sean Davis wrote:
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
---------------------------(end of
broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?
http://www.postgresql.org/docs/faq
Home |
Main Index |
Thread Index