REMOVE_STOPTHEME
Removes a stoptheme from a stoplist.
Syntax
CTX_DDL.REMOVE_STOPTHEME(
stoplist_name IN VARCHAR2,
stoptheme IN VARCHAR2
);
stoplist_name
Specify the name of the stoplist.
stoptheme
Specify the stoptheme to be removed from stoplist_name.
Example
The following example removes the stoptheme banking from the stoplist mystop:
begin
ctx_ddl.remove_stoptheme('mystop', 'banking');
end;