Oracle8i interMedia Text Reference Release 2 (8.1.6) Part Number A77063-01 |
|
CTX_DDL Package, 21 of 24
Removes a stopword from a stoplist. To have the removal of a stopword be reflected in the index, you must rebuild your index.
CTX_DDL.REMOVE_STOPWORD( stoplist_name in varchar2, stopword in varchar2 );
Specify the name of the stoplist.
Specify the stopword to be removed from stoplist_name.
The following code removes a stopword because from the stoplist mystop
:
begin ctx_ddl.remove_stopword('mystop','because'); end;
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|