5.6 Dropping a Preference
You might drop a custom index preference when you no longer need it for indexing.
You drop index preferences with the CTX_DDL.DROP_PREFERENCE
procedure.
Dropping a preference does not affect the index that is created from the preference.
See Also:
Oracle Text Reference to learn more about the syntax for the CTX_DDL.DROP_PREFERENCE
procedure
The following code drops the my_lexer
preference:
begin ctx_ddl.drop_preference('my_lexer'); end;