Oracle8i interMedia Text Reference Release 2 (8.1.6) Part Number A77063-01 |
|
CTX_DDL Package, 8 of 24
Adds a single stopword to a stoplist. To create a list of stopwords, you must call this procedure once for each word.
CTX_DDL.ADD_STOPWORD( stoplist_name in varchar2, stopword in varchar2 );
Specify the name of the stoplist.
Specify the stopword to be added.
The following example adds the stopwords because, notwithstanding, nonetheless, and therefore to the stoplist mystop
:
begin ctx_ddl.add_stopword('mystop', 'because'); ctx_ddl.add_stopword('mystop', 'notwithstanding'); ctx_ddl.add_stopword('mystop', 'nonetheless'); ctx_ddl.add_stopword('mystop', 'therefore'); end;
The maximum number of stopwords, stopthemes, and stopclasses you can add to a stoplist is 4095.
ALTER INDEX in Chapter 2.
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|