Re: oid or without oid ...

Поиск
Список
Период
Сортировка
От Raimon Fernandez
Тема Re: oid or without oid ...
Дата
Msg-id 46C073A8-2524-4CA2-A780-B5C000EA7118@montx.com
обсуждение исходный текст
Ответ на Re: oid or without oid ...  (Sean Davis <sdavis2@mail.nih.gov>)
Список 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 по дате отправления:

Предыдущее
От: Sean Davis
Дата:
Сообщение: Re: oid or without oid ...
Следующее
От: kvnsmnsn@cs.byu.edu
Дата:
Сообщение: How Do You Do a Three Way Join?