select * from table where oid = number;
Taral <taral@mail.utexas.edu>
From: "Taral" <taral@mail.utexas.edu>
To: <pgsql-general@hub.org>
Date: 1998-10-08T19:48:08Z
Lists: pgsql-general
Is there a reason why this occurs? table=> explain select * from data where oid = 18522; NOTICE: QUERY PLAN: Seq Scan on data (cost=0.00 size=0 width=120) EXPLAIN I would have expected an index scan or something. TAral