Re: OID order = INSERT order?

From: "scott(dot)marlowe" <scott(dot)marlowe(at)ihs(dot)com>
To: Justin Hawkins <justin(at)internode(dot)com(dot)au>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: OID order = INSERT order?
Date: 2002-09-16 15:43:06
Message-ID: Pine.LNX.4.33.0209160942260.32487-100000@css120.ihs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 13 Sep 2002, Justin Hawkins wrote:

>
> Hi folks,
>
> I am converting a legacy (DBM file backend) app to SQL. The current
> storage scheme utlizes ordered list values on objects. To emulate this
> I'm just doing multiple INSERTs on a table.
>
> I need to make sure they will come back out in the same order, every
> time though.
>
> When I fetch values back from the table, if I 'ORDER BY oid', will I
> always get them back in the same order I put them in?

If you update a row, it will then have a different OID since postgresql
uses MVCC.

do it the right way, make a sequence and attach it to the table.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2002-09-16 15:45:26 Re: RI Trigger Names
Previous Message Stephan Szabo 2002-09-16 15:42:33 Re: RI Trigger Names