The error can be seen in the table name, DATAPOİNTTAGS capitalized incorrectly due to a bug in the JOOQ library. In your other thread I provided instructions on how to set your language to English in the mean time to avoid this issue. In case someone finds it here,
For the moment, you could try putting a file like this into Mango/bin/ext-enabled/
BAT if you're on Windows: set-language.bat
if "%1" == "init" (
rem Startup with the default language set to English
set JAVAOPTS=%JAVAOPTS% -Duser.language=en
)
SH otherwise: set-language.sh
#!/bin/bash
case "$1" in
init)
# Startup with the default language set to English
JAVAOPTS="$JAVAOPTS -Duser.language=en"
;;
esac
Then stop Mango, and start it again.