Re: Running Totals and other stuff....

From: Greg Stark <gsstark(at)mit(dot)edu>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Running Totals and other stuff....
Date: 2004-06-02 14:09:08
Message-ID: 87smde59x7.fsf@stark.xeocode.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


> > The best long term solution, IMHO, would be to change postgres so that
> > it has a unique system column for each record, like Oracle does.

Well incidentally, Oracle doesn't really either. If you use rowid for these
things then you're in for some surprises when you make any significant DDL
changes. At the very least it means dumping and reloading the data in a new
database will destroy all your relationships.

But the only reason Oracle even has something like rowid is a quirk of its
implementation. Postgres is implemented differently and in that implementation
there simply is no such identifier available.

--
greg

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Stephan Szabo 2004-06-02 14:28:48 Re: ORDER BY with plpgsql parameter
Previous Message Nagib Abi Fadel 2004-06-02 14:00:18 Creating a session variable in Postgres