weird duplicate data problem

From: Carolyn Lu Wong <carolyn(at)greatpacific(dot)com(dot)au>
To: pgsql-sql(at)postgresql(dot)org
Subject: weird duplicate data problem
Date: 2001-12-14 07:29:18
Message-ID: 3C19AA4E.CF8D4C10@greatpacific.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

a table was created with:

create table bills (
id serial not null,
account_no int4 not null,
date_issued date not null,
.....
);

The following SQL script returns only 1 row of data:

select oid, * from bills where id = xxxxx' order by oid;

However with the following SQL:

select oid, * from bills where date_issued = '01/01/2001'
order by oid;

some of the data is duplicated, including the OID.

When trying to 'vaccum' the database, get

NOTICE: Index bills_id_key: number of index tupples (4755) is not the
same as heap (7800).

What is happening? What could have caused this?

Database version used is V6.50. I know it's old, but i hope it's not the
version that's causing this problem.

Thanks in advance for any suggestions.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message MindTerm 2001-12-14 08:05:49 Re: performance tuning in large function / transaction
Previous Message Stephan Szabo 2001-12-14 06:47:26 Re: performance tuning in large function / transaction