CREATE_THESAURUS
The CREATE_THESAURUS procedure creates an empty thesaurus with the specified name in the thesaurus tables.
Syntax
CTX_THES.CREATE_THESAURUS(name IN VARCHAR2,
casesens IN BOOLEAN DEFAULT FALSE);
name
Specify the name of the thesaurus to be created. The name of the thesaurus must be unique. If a thesaurus with the specified name already exists, CREATE_THESAURUS returns an error and does not create the thesaurus.
casesens
Specify whether the thesaurus to be created is case-sensitive. If casesens is true, Oracle Text retains the cases of all terms entered in the specified thesaurus. As a result, queries that use the thesaurus are case-sensitive.
Example
begin
ctx_thes.create_thesaurus('tech_thes', FALSE);
end;