DROP_PREFERENCE
The DROP_PREFERENCE procedure deletes the specified preference from the Text data dictionary. Dropping a preference does not affect indexes that have already been created using that preference.
Syntax
CTX_DDL.DROP_PREFERENCE(
preference_name IN VARCHAR2
);
preference_name
Specify the name of the preference to be dropped.
Example
The following example drops the preference my_lexer.
begin
ctx_ddl.drop_preference('my_lexer');
end;
Related Topics
CTX_DDL.CREATE_PREFERENCE