ALTER TEXT INDEX Statement

Renames, moves or alters the definition of a TEXT index.

Note: This statement requires the Unstructured Data Analytics (IQ_UDA) license.

Syntax

ALTER TEXT INDEX [ owner.]text-index-name
   ON [ owner.]table-name  
   alter-clause

alter-clause:
   rename-object | move-object 

rename-object:
   RENAME { AS | TO } new-name

move-object:
   MOVE TO dbspace-name

Parameters

Examples

Usage

Side Effects:
  • Automatic commit.

Permissions

move-object clause – Requires one of:
  • ALTER ANY INDEX system privilege.
  • ALTER ANY OBJECT system privilege.
  • REFERENCE permission on the underlying table.
  • You own the underlying table
rename-object clause – Requires one of:
  • ALTER ANY INDEX system privilege.
  • ALTER ANY OBJECT system privilege.
  • MANAGE ANY DBSPACE
  • One of the following:
    • You own the underlying table being indexed.
    • REFERENCE privilege on the table along with one of the following:
      • CREATE ANY OBJECT system privilege.
      • CREATE privilege on the target dbspace.