In Toad 14 I have tried to change the numeric character:
alter session set NLS_NUMERIC_CHARACTERS = ',.';
When I execute this SQL
select 1/2 from dual;
The result is get is
0.5
How do get it to display as
0,5
In Toad 14 I have tried to change the numeric character:
alter session set NLS_NUMERIC_CHARACTERS = ',.';
When I execute this SQL
select 1/2 from dual;
The result is get is
0.5
How do get it to display as
0,5
Hello,
I have Toad 16.1.53.1594 and cannot change this Numeric parameters in Toad Options.
I change it (Decimal: "," and Thousand: ".") and apply, but then I try:
select 1/2 from dual;
It's 0.5
When i open again Toad Option, boxes in Numeric characters are empty:
I also found this option in Toad.ini file:
FindDialogMRU=NLS_LANG,NLS,Info,".,",
But when I change it in this file (".," to ",.") something changes automatically this back to ".," (?)
Can someone help me?
Hello,
That entry in Toad.ini is not related to this.
This is a bug in 16.1. To set the Decimal and thousands in 16.1, follow these steps:
This is fixed in 16.2.
Interesting solution for bug.
Thank you very much, it works