I switch from PL/SQL Developer 13 x32 to version 14.0.1.1965 (64 bit) and I notice some problem with conversion text to number. Simple example:
select
to_number('123.45')
from
dual
;
work fine, but when i changed "." to "," and switched settings
User Interface --> NLS Options
then it fail with conversion error. It looks like this settings isn't use or is overwrite by something else.

select
to_number('123.45')
from
dual
;
work fine, but when i changed "." to "," and switched settings
User Interface --> NLS Options
then it fail with conversion error. It looks like this settings isn't use or is overwrite by something else.

Last edited: