Re: [HACKERS] Re: [QUESTIONS] Arrays (inserting and removing)

From: The Hermit Hacker <scrappy(at)hub(dot)org>
To: Bryan Basham <basham(at)bhi(dot)com>
Cc: vadim(at)sable(dot)krasnoyarsk(dot)su, karl(at)mcs(dot)net, pgsql-hackers(at)postgreSQL(dot)org, pgsql-questions(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Re: [QUESTIONS] Arrays (inserting and removing)
Date: 1998-01-15 18:48:24
Message-ID: Pine.NEB.3.95.980115134602.16579Q-100000@hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Thu, 15 Jan 1998, Bryan Basham wrote:

>
> > OIDs are a bastardization of the relational model. If you have to keep
> > them, then do so, but their use should be SEVERELY discouraged.
>
> Explain yourself, please.
>
> In my opinion, I view the OID in the same way as I view the SERIAL datatype
> in Informix. It is usually a primary key field in a table. On an insert,
> the DBMS will increment the current serial-maximum (for that table) and insert
> the new serial value into that field; thus creating a unique identifier.
>
> There are differences between OID and SERIAL. The main difference is that
> the OID field (always called 'oid') is always present whereas a DB designer
> explicitly creates 'id' fields (of SERIAL type). Thus, postgresql treats
> every table as an object (which is not always the case).

Major problem with OID: OIDs are sequenced across the database,
not the table. ie. tableA inserts with OID #1, tableB inserts with OID
#2, tableA inserts next record with OID #3, tableC then gets #4, etc...

And...# of OIDs is finite...so if you have a lot of tables with
alot of data in each...you run the risk of running out.

In this sense, sequences are the better alternative, but again,
they are a newer feature to PostgreSQL then the code that I wrote using
OIDs

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Peter T Mount 1998-01-15 19:25:43 Re: [HACKERS] Max size of data types and tuples. (fwd)
Previous Message The Hermit Hacker 1998-01-15 18:42:51 Re: [HACKERS] Re: [QUESTIONS] Arrays (inserting and removing)