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

From Raimon Fernandez
Subject Re: oid or without oid ...
Date
Msg-id 46C073A8-2524-4CA2-A780-B5C000EA7118@montx.com
Whole thread Raw
In response to Re: oid or without oid ...  (Sean Davis <sdavis2@mail.nih.gov>)
List pgsql-novice
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
>



pgsql-novice by date:

Previous
From: Sean Davis
Date:
Subject: Re: oid or without oid ...
Next
From: kvnsmnsn@cs.byu.edu
Date:
Subject: How Do You Do a Three Way Join?