DROP_STOPLIST
Drops a stoplist from the Text data dictionary. When you drop a stoplist, you must re-create or rebuild the index for the change to take effect.
Syntax
CTX_DDL.DROP_STOPLIST(stoplist_name in varchar2);
stoplist_name
Specify the name of the stoplist.
Example
The following example drops the stoplist mystop:
begin
ctx_ddl.drop_stoplist('mystop');
end;
Related Topics
CTX_DDL.CREATE_STOPLIST