Show TOC

DROP TEXT INDEX StatementLocate this document in the navigation structure

Removes a TEXT index from the database.

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
DROP TEXT INDEX <text-index-name>
   ON<owner> ] <table-name>
Parameters

(back to top)

  • ON specifies the table on which the TEXT index is built.
Examples

(back to top)

  • Example 1 creates and drops the TextIdx TEXT index:
    CREATE TEXT INDEX TextIdx ON Customers ( Street );
    DROP TEXT INDEX TextIdx ON Customers;
Usage

(back to top)

You must drop dependent TEXT indexes before you can drop a text configuration object.

Side Effects:
  • Automatic commit.
Permissions

(back to top)

Requires one of:
  • DROP ANY INDEX system privilege.
  • DROP ANY OBJECT system privilege.
  • REFERENCES privilege on the table being indexed.
  • You own the underlying table.