Problem Designing Index

From: Alan J Batsford <AJBatsford(at)uss(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Problem Designing Index
Date: 2007-08-10 15:34:22
Message-ID: OFEB3E89C6.EB88E0B2-ON85257333.0051DE50-85257333.00558B67@notes.uss.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


Hello,

I'm doing some select statements on my table that look like:
SELECT * FROM table WHERE prod_num = '1234567' AND transaction_timestamp >
'2007-07-18 21:29:57' OR prod_num > '1234567' ORDER BY prod_num ASC,
transaction_timestamp ASC LIMIT 1;

I've added two indices one for prod_num and another transaction_timestamp.
This table has 151,000 rows and the above statement returns in less than a
millisecond. If I change the above statement from '>' to '<' it takes 8
seconds to complete. Prod_num '1234567' is towards the end of the 151k
rows. If i use a prod_num like '0000123' towards the front the problem is
reversed with '>' and '<'.

I tried adding a third index that uses both prod_num and
transaction_timestamp. The average performance at each end of the data for
both '>' and '<' improved but the problem wasn't resolved. Selects at the
end of the data with '>' conditions (Like the original statement) then
becomes broken and takes 500 ms to finish, which is unacceptable for the
application.

I did analyze on the table with no effect.

Is it possible to design an index that can account for all the scenerios?
Thanks for any help you can provide.

-Alan

Browse pgsql-general by date

  From Date Subject
Next Message Guido Neitzer 2007-08-10 15:45:16 Re: Database Select Slow
Previous Message Michael Glaesemann 2007-08-10 14:04:45 Re: [PROPOSAL] DML value format