I am trying to convert a number of type varchar
(e.g 1234.456) in to floating point number using oracle function to_number(). In my PC (Locale German) the Oracle SQLDeveloper returning number in the fromat 1234,567
instead of 1234.567
and inturn it is causing the oracle error ORA-01722-invalid number
. I cahnged my system locale to en_usa
but no use. How can i change the behavior of oracle ?
Help will be greatly appriciated