Re: Should I keep INDEX on the table? - Mailing list pgsql-novice

From Oliver Fromme
Subject Re: Should I keep INDEX on the table?
Date
Msg-id 200405141245.i4ECjtnj040234@lurza.secnetix.de
Whole thread Raw
In response to Should I keep INDEX on the table?  ("Rajan Bhide" <rbhide@nulinkinc.com>)
List pgsql-novice
Hello,

Rajan Bhide wrote:
 > I am having a table with UNIQUE constraints defined on three columns.
 > Also I have UNIQUE user defined INDEX with the same columns on the
 > table.

I think that is redundant.  You can easily verify that by
dropping the index and then check with EXPLAIN if anything
has changed with regards to index usage.

 > The problem on removing the index is that my table has almost 2M
 > transtions in approx ~4 Hours and I need to perform external reindexing
 > (DROP and CREATE INDEX) every 2 Hours to reclaim the dead space left
 > behind by the deleted rows.

Uhm, maybe I'm completely misunderstanding you here, but
I think that's the job of VACUUM.  There should not be a
need to drop and re-create the index for that purpose.

Best regards
   Oliver Fromme

--
Oliver Fromme, secnetix GmbH & Co KG, Oettingenstr. 2, 80538 München
Any opinions expressed in this message may be personal to the author
and may not necessarily reflect the opinions of secnetix in any way.

"In My Egoistical Opinion, most people's C programs should be indented
six feet downward and covered with dirt."
        -- Blair P. Houghton

pgsql-novice by date:

Previous
From: "Rajan Bhide"
Date:
Subject: Re: Should I keep INDEX on the table?
Next
From: Ian Pilcher
Date:
Subject: "Procedure" or deferrable check constraint?