DROP_DICTIONARY

Use this procedure to drop a custom dictionary from AUTO_LEXER.

Syntax

CTX_ANL.DROP_DICTIONARY(
  name          in VARCHAR2,
  language      in VARCHAR2,
  dictionary    in CLOB
  );

name

The unique name for the user-created custom dictionary.

Note: The unique name may not be prefixed by the schema or the owner name as this syntax is not supported.

language

The language for the custom dictionary.

dictionary

The CLOB representing the custom dictionary.

Example

begin
   CTX_ANL.DROP_DICTIONARY('dict1', 'english', 'dictionary');
end;

AUTO_LEXER

ADD_DICTIONARY