Re: Equivalent praxis to CLUSTERED INDEX?

From: Gaetano Mendola <mendola(at)bigfoot(dot)com>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Subject: Re: Equivalent praxis to CLUSTERED INDEX?
Date: 2004-08-26 21:09:35
Message-ID: 412E518F.8090805@bigfoot.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Bruce Momjian wrote:
> How do vendors actually implement auto-clustering? I assume they move
> rows around during quiet periods or have lots of empty space in each
> value bucket.
>
> ---------------------------------------------------------------------------

IIRC informix doesn't have it, and you have to recluster periodically
the table. After having clustered the table with an index in order to
recluster the table with another index you have to release the previous
one ( ALTER index TO NOT CLUSTER ), the CLUSTER is an index attribute and
each table can have only one index with that attribute ON.

Regards
Gaetano Mendola

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Mischa Sandberg 2004-08-26 21:41:04 Re: Equivalent praxis to CLUSTERED INDEX?
Previous Message Mischa Sandberg 2004-08-26 21:00:47 Re: Equivalent praxis to CLUSTERED INDEX?