ALTER INDEX
Function
ALTER INDEX modifies the definition of an existing index.
There are several sub-forms:
- IF EXISTS
If the specified index does not exist, a notice instead of an error is sent.
- RENAME TO
Changes only the name of the index. There is no effect on the stored data.
- SET ( { STORAGE_PARAMETER = value } [, ...] )
Change one or more index-method-specific storage parameters. Note that the index contents will not be modified immediately by this command. You might need to rebuild the index with REINDEX to get the desired effects depending on parameters.
- RESET ( { storage_parameter } [, ...] )
Reset one or more index-method-specific storage parameters to the default value. Similar to the SET statement, REINDEX may be used to completely update the index.
- [ MODIFY PARTITION index_partition_name ] UNUSABLE
Sets the index on a table or index partition to be unavailable.
- REBUILD [ PARTITION index_partition_name ]
- RENAME PARTITION
- COMMENT comment_text
Precautions
- Only the owner of an index or a system administrator can run this statement.
Syntax
- Rename a table index.
1 2
ALTER INDEX [ IF EXISTS ] index_name RENAME TO new_name;
- Modify the storage parameter of a table index.
1 2
ALTER INDEX [ IF EXISTS ] index_name SET ( {storage_parameter = value} [, ... ] );
- Reset the storage parameter of a table index.
1 2
ALTER INDEX [ IF EXISTS ] index_name RESET ( storage_parameter [, ... ] ) ;
- Set a table index or an index partition to be unavailable.
1 2
ALTER INDEX [ IF EXISTS ] index_name [ MODIFY PARTITION index_partition_name ] UNUSABLE;
The syntax cannot be used for column-store tables.
- Rebuild a table index or index partition.
1 2
ALTER INDEX index_name REBUILD [ PARTITION index_partition_name ];
- Rename an index partition.
1 2
ALTER INDEX [ IF EXISTS ] index_name RENAME PARTITION index_partition_name TO new_index_partition_name;
PG_OBJECT does not support the record of the syntax when the last modification time of the index is recorded.
- Add and modify the index comment.
1 2
ALTER INDEX [ IF EXISTS ] index_name COMMENT 'text';
- Delete the index comment.
1 2 3 4
ALTER INDEX [ IF EXISTS ] index_name COMMENT ''; ALTER INDEX [ IF EXISTS ] index_name COMMENT NULL;
Parameter Description
- index_name
Specifies the index name to be modified.
- new_name
Specifies the new name for the index.
Value range: a string that must comply with the identifier naming rules.
- storage_parameter
Specifies the name of an index-method-specific parameter.
- value
Specifies the new value for an index-method-specific storage parameter. This might be a number or a word depending on the parameter.
- new_index_partition_name
Specifies the new name of the index partition.
- index_partition_name
Specifies the name of the index partition.
- comment_text
Examples
Rename the ds_ship_mode_t1_index1 index to ds_ship_mode_t1_index5:
1
|
ALTER INDEX tpcds.ds_ship_mode_t1_index1 RENAME TO ds_ship_mode_t1_index5; |
Set the ds_ship_mode_t1_index2 index as unusable:
1
|
ALTER INDEX tpcds.ds_ship_mode_t1_index2 UNUSABLE; |
Rebuild the ds_ship_mode_t1_index2 index:
1
|
ALTER INDEX tpcds.ds_ship_mode_t1_index2 REBUILD; |
Rename a partitioned table index:
1
|
ALTER INDEX tpcds.ds_customer_address_p1_index2 RENAME PARTITION CA_ADDRESS_SK_index1 TO CA_ADDRESS_SK_index4; |
Modify the index comment:
1
|
ALTER INDEX tpcds.ds_customer_address_p1_index2 COMMENT 'comment_ds_customer_address_p1_index2'; |
Links
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.