I'm monitoring an Oracle Database by applying the Template Oracle by ODBC.
Searching on the forum the problem seems to be on the NLS_NUMERIC_CHARACTERS parameter conifiguration:
Unfortunatelly I'm not able to change permanently the parameter.
I also see that a possible way to adjust this problem is by using a preprocessing and replace "." with "," and viceversa.
However i'm looking for a more robust and modular solution.
I tried to modify just the current session by adding this command inside the SQL query template
but i get the following error message:
Cannot execute ODBC query: [SQL_ERROR]:[HY000][922][[Oracle][ODBC][Ora]ORA-00922: opzione mancante o non valida]
Is there a way in zabbix I can modify this parameter without changing it permanently?
Thanks for help.
Regards.
Searching on the forum the problem seems to be on the NLS_NUMERIC_CHARACTERS parameter conifiguration:
Code:
select value from nls_session_parameters where parameter = 'NLS_NUMERIC_CHARACTERS'; VALUE ---------------------------------------------------------------- ,.
I also see that a possible way to adjust this problem is by using a preprocessing and replace "." with "," and viceversa.
However i'm looking for a more robust and modular solution.
I tried to modify just the current session by adding this command inside the SQL query template
Code:
ALTER SESSION SET NLS_NUMERIC_CHARACTERS = '.,';
Cannot execute ODBC query: [SQL_ERROR]:[HY000][922][[Oracle][ODBC][Ora]ORA-00922: opzione mancante o non valida]
Is there a way in zabbix I can modify this parameter without changing it permanently?
Thanks for help.
Regards.
Comment