DROP_THESAURUS
The DROP_THESAURUS procedure deletes the specified thesaurus and all of its entries from the thesaurus tables.
Syntax
CTX_THES.DROP_THESAURUS(name IN VARCHAR2);
name
Specify the name of the thesaurus to be dropped.
Example
begin
ctx_thes.drop_thesaurus('tech_thes');
end;