Removes a TEXT index from the database.
DROP TEXT INDEXtext-index-name ON[ owner ] table-name
These statements create and drop the TextIdx TEXT index:
CREATE TEXT INDEX TextIdx ON Customers ( Street ); DROP TEXT INDEX TextIdx ON Customers;
ON specifies the table on which the TEXT index was built.
You must drop dependent TEXT indexes before you can drop a text configuration object.
Automatic commit
Must be the owner of the underlying table, or have DBA authority, or have REFERENCES permission.