Re: pgadmin 3

Поиск
Список
Период
Сортировка
От Martijn van Oosterhout
Тема Re: pgadmin 3
Дата
Msg-id 20040722002404.GF20162@svana.org
обсуждение исходный текст
Ответ на Re: pgadmin 3  (Mike G <mike@thegodshalls.com>)
Список pgsql-general
On Wed, Jul 21, 2004 at 12:06:09AM -0500, Mike G wrote:
> OID could be used for primary key I suppose.  To use as a foreign key
> you would manually have to somehow copy the value in table A and
> insert into B.  AFAIK system generated OIDS are unique to each table.

WRONG. OIDs are not guarenteed unique. They are not suitable for
primary keys. They will wrap eventually. They are not indexed in any
way unless you create an index yourself.

Use serials from primary keys, much safer...
--
Martijn van Oosterhout   <kleptog@svana.org>   http://svana.org/kleptog/
> Patent. n. Genius is 5% inspiration and 95% perspiration. A patent is a
> tool for doing 5% of the work and then sitting around waiting for someone
> else to do the other 95% so you can sue them.

Вложения

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: SQL - display different data
Следующее
От: Grant McLean
Дата:
Сообщение: Re: Locking with foreign key constraints