Re: [JDBC] is a good practice to create an index on the

Поиск
Список
Период
Сортировка
От Dave Cramer
Тема Re: [JDBC] is a good practice to create an index on the
Дата
Msg-id 1083067187.14759.178.camel@localhost.localdomain
обсуждение исходный текст
Ответ на Re: is a good practice to create an index on the oid?  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Ответы Re: [JDBC] is a good practice to create an index on the  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Список pgsql-performance
AFAIK, oids aren't used for anything internally, so duplicates don't
really matter. Besides, what would you do about duplicate oid's ?

The best suggestion is of course his last, don't use them.


On Mon, 2004-04-26 at 22:48, Christopher Kings-Lynne wrote:
> > I am using the oid of the table as the main key and I've found that is
> > not indexed (maybe because I have declared another primary key in the
> > table)
> >
> > it is a good practice to create an index like this on the oid of a table?
> > CREATE INDEX idoid annuncio400 USING btree (oid);
>
> Yes it is - in fact you really should add a unique index, not just a
> normal index, as you want to enforce uniqueness of the oid column.  It
> is theoretically possible to end up with duplicate oids in wraparound
> situations.
>
> Even better though is to not use oids at all, of course...
>
> Chris
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
>                http://www.postgresql.org/docs/faqs/FAQ.html
>
>
>
> !DSPAM:408dcc51235334924183622!
>
>
--
Dave Cramer
519 939 0336
ICQ # 14675561


В списке pgsql-performance по дате отправления:

Предыдущее
От: Christopher Kings-Lynne
Дата:
Сообщение: Re: is a good practice to create an index on the oid?
Следующее
От: Manfred Koizar
Дата:
Сообщение: Re: Shared buffers, Sort memory, Effective Cache Size