You must drop an existing index before you can re-create it with CREATE
INDEX
.
Drop an index using the DROP
INDEX
statement in SQL.
If you try to create an index with an invalid PARAMETERS
string, then you still need to drop it before you can re-create it.
For example, to drop an index called newsindex
, enter the following SQL statement:
DROP INDEX newsindex;
If Oracle Text cannot determine the state of the index, for example as a result of an indexing malfunction, you cannot drop the index as described previously. Instead use:
DROP INDEX newsindex FORCE;
Oracle Text Reference to learn more about the DROP
INDEX
statement