Change comma by point

LuColli

Member
Hello,
I need to export records and I have to change comma in values by point (example 25,30 to 25.30). I looked for it in tools, but I didn
 
Hi Lu,

You could try this before running export:

Code:
alter session set nls_numeric_characters='.,';
Abra
 
The numeric format will be as defined in the Windows Regional and Language Options (you can use this as a workaround). This seems like a bug, since it should always use a . as decimal symbol. We'll fix it.
 
Back
Top