Database Error Messages

ORA-04101

Multilingual Engine does not support the language string.

Cause

An attempt was made to use an unsupported language in Multilingual Engine (MLE).


Action

Use a supported language when creating an MLE module or calling DBMS_MLE.eval(). A list of supported languages can be obtained by calling DBMS_MLE.get_available_languages().


Additional Information

The list of languages supported in Multilingual Engine (MLE) can be obtained by using the following PL/SQL query:

DECLARE
l_languages dbms_mle.languages_t;
BEGIN
l_languages := dbms_mle.get_available_languages;
FOR in IN 1..l_languages.count LOOP
dbms_output.put_line(l_languages(i));
END LOOP;
END;
/