DROP_TRANSLATION
Use this procedure to remove one or more translations for a phrase.
Syntax
CTX_THES.DROP_TRANSLATION (tname in varchar2,
phrase in varchar2,
language in varchar2 default null,
translation in varchar2 default null);
tname
Specify the name of the thesaurus, using no more than 30 characters.
phrase
Specify the phrase in the thesaurus to which to remove a translation. The phrase must already exist in the thesaurus or an error is raised.
language
Optionally, specify the language of the translation, using no more than 10 characters. If not specified, the translation must also not be specified and all translations in all languages for the phrase are removed. An error is raised if the phrase has no translations.
translation
Optionally, specify the translated term to remove, using no more than 256 characters. If no such translation exists, an error is raised.
Example
The following code removes the Spanish translation for dog:
begin
ctx_thes.drop_translation('my_thes', 'dog', 'SPANISH', 'PERRO');
end;
To remove all translations for dog in all languages:
begin
ctx_thes.drop_translation('my_thes', 'dog');
end;