Using "Without OIDs"

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Using "Without OIDs"
Дата
Msg-id 40AA5C56.2030105@archonet.com
обсуждение исходный текст
Ответ на Max Columns in a SQL Select  (PS PS <psus2020@yahoo.com>)
Список pgsql-sql
Ricardo Maia wrote:
> Hi,
> 
> I'm from Brazil, and i have a question.

Hi Ricardo, happy to help, but three points: 1. Always make sure you use "reply to all" on the PostgreSQL lists 2. For
anew question, send a new message to pgsql-sql@postgresql.org, 
 
since most direct email to this address goes into my spam bin. 3. You caught the subject-line change yourself in your
nextposting.
 

> Exists some problem if i not uses the option "without oids"?
> I read the manual, but I don't understand what I earn if i use it.

The OIDs are used by PostgreSQL's system tables. So, you can do 
something like  SELECT oid,relname,reltype FROM pg_class;
This will give you the number PG uses to refer to tables (etc.), the 
name you use and the type of thing it is. This type is also an OID.

These OIDs were never really meant to be for user-tables, but some 
people used them as a default primary-key. This was a bad idea, but 
since the column was always there you couldn't stop them.

The developers couldn't just turn OIDs off for user tables without 
breaking some applications, so they added an option to say you didn't 
want them. If you specify you don't want OIDs that table will use 4 
bytes less for every row, and so be a bit faster.

I believe in the next version, the default setting will be not to have 
OIDs and you will have to specify "WITH OIDS" if you do want them.

HTH
--   Richard Huxton  Archonet Ltd


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

Предыдущее
От: Ricardo Maia
Дата:
Сообщение: Re: I'M Sorry!
Следующее
От: Christoph Haller
Дата:
Сообщение: Re: a wierd query