Changes the definition of an index.

Synopsis

  1. ALTER INDEX [ IF EXISTS ] <name> RENAME TO <new_name>
  2. ALTER INDEX [ IF EXISTS ] <name> SET TABLESPACE <tablespace_name>
  3. ALTER INDEX [ IF EXISTS ] <name> SET ( <storage_parameter> = <value> [, ...] )
  4. ALTER INDEX [ IF EXISTS ] <name> RESET ( <storage_parameter> [, ...] )
  5. ALTER INDEX ALL IN TABLESPACE <name> [ OWNED BY <role_name> [, ... ] ]
  6. SET TABLESPACE <new_tablespace> [ NOWAIT ]

Description

ALTER INDEX changes the definition of an existing index. There are several subforms:

  • RENAME — Changes the name of the index. There is no effect on the stored data.
  • SET TABLESPACE — Changes the index’s tablespace to the specified tablespace and moves the data file(s) associated with the index to the new tablespace. To change the tablespace of an index, you must own the index and have CREATE privilege on the new tablespace. All indexes in the current database in a tablespace can be moved by using the ALL IN TABLESPACE form, which will lock all indexes to be moved and then move each one. This form also supports OWNED BY, which will only move indexes owned by the roles specified. If the NOWAIT option is specified then the command will fail if it is unable to acquire all of the locks required immediately. Note that system catalogs will not be moved by this command, use ALTER DATABASE or explicit ALTER INDEX invocations instead if desired. See also CREATE TABLESPACE.
  • IF EXISTS — Do not throw an error if the index does not exist. A notice is issued in this case.
  • SET — Changes the index-method-specific storage parameters for the index. The built-in index methods all accept a single parameter: fillfactor. The fillfactor for an index is a percentage that determines how full the index method will try to pack index pages. Index contents will not be modified immediately by this command. Use REINDEX to rebuild the index to get the desired effects.
  • RESET — Resets storage parameters for the index to their defaults. The built-in index methods all accept a single parameter: fillfactor. As with SET, a REINDEX may be needed to update the index entirely.

Parameters

name

The name (optionally schema-qualified) of an existing index to alter.

new_name

New name for the index.

tablespace_name

The tablespace to which the index will be moved.

storage_parameter

The name of an index-method-specific storage parameter.

value

The new value for an index-method-specific storage parameter. This might be a number or a word depending on the parameter.

Notes

These operations are also possible using ALTER TABLE.

Changing any part of a system catalog index is not permitted.

Examples

To rename an existing index:

  1. ALTER INDEX distributors RENAME TO suppliers;

To move an index to a different tablespace:

  1. ALTER INDEX distributors SET TABLESPACE fasttablespace;

To change an index’s fill factor (assuming that the index method supports it):

  1. ALTER INDEX distributors SET (fillfactor = 75);
  2. REINDEX INDEX distributors;

Compatibility

ALTER INDEX is a Greenplum Database extension.

See Also

CREATE INDEX, REINDEX, ALTER TABLE

Parent topic: SQL Commands