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.

Quick Links:

Go to Parameters

Go to Examples

Go to Usage

Go to Permissions

Syntax

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

alter-clause - (back to Syntax)
   rename-object | move-object 

rename-object - (back to alter-clause)
   RENAME { AS | TO } new-name

move-object - (back to alter-clause)
   MOVE TO dbspace-name

Parameters

(back to top)

Examples

(back to top)

Usage

(back to top)

Side Effects:
  • Automatic commit.

Permissions

(back to top)

move-object clause – Requires one of:
  • ALTER ANY INDEX system privilege.
  • ALTER ANY OBJECT system privilege.
  • REFERENCES privilege 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.
    • REFERENCES privilege on the table along with one of the following:
      • CREATE ANY OBJECT system privilege.
      • CREATE privilege on the target dbspace.