cluster.l 1.2 KB
Newer Older
1 2
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
B
Bruce Momjian 已提交
3
.\" $Header: /cvsroot/pgsql/src/man/Attic/cluster.l,v 1.4 1998/01/11 22:17:10 momjian Exp $
4
.TH CLUSTER SQL 01/23/93 PostgreSQL PostgreSQL
5
.SH NAME
B
Bruce Momjian 已提交
6
cluster - give storage clustering advice to Postgres
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
.SH SYNOPSIS
.nf
\fBcluster\fR indexname \fBon\fR attname
.fi
.SH DESCRIPTION
This command instructs Postgres to cluster the class specified by
.IR classname
approximately based on the index specified by 
.IR indexname.
The index must already have been defined on 
.IR classname.
.PP
When a class is clustered, it is physically reordered based on the index
information.  The clustering is static.  In other words, if the class is
updated, it may become unclustered.  No attempt is made to keep new
instances or updated tuples clustered.  If desired, the user can
recluster manually by issuing the command again.
B
Bruce Momjian 已提交
24 25 26 27
.PP
The table is actually copied to temporary table in index order,
then renamed back to the original name.  For this reason, all
grant permissions and other indexes are lost when cluster is performed.
28 29 30 31 32 33 34 35 36 37
.SH EXAMPLE
.nf
/*
 * cluster employees in based on its salary attribute
 */
create index emp_ind on emp using btree (salary int4_ops);

cluster emp_ind on emp
.fi