Hi,
Why the session NLS_NUMERIC_CHARACTERS parameter is different from system one?
SQL*Plus: Release 11.2.0.1.0 Production on Wed Sep 14 15:40:11 2022
Copyright (c) 1982, 2009, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options
SQL> set lin 999
SQL> select * from nls_database_parameters where PARAMETER='NLS_NUMERIC_CHARACTERS';
PARAMETER VALUE
------------------------------ ----------------------------------------------------------------------------------------------------------------------------------------------------------------
NLS_NUMERIC_CHARACTERS ,.
SQL> select value from nls_session_parameters where parameter = 'NLS_NUMERIC_CHARACTERS';
VALUE
----------------------------------------------------------------------------------------------------------------------------------------------------------------
.,
SQL>
SQL> Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options
Thanks in advance.
Regards, Jose Luis.