Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to change number value stored in italian format in international format

Raj NathJul 17 2015 — edited Jul 17 2015

I have a value 111.111.122.000,00 which is italian format, but while storing in database table i want to make it as 111111122000.00

I can do this using replace or regular expression like

select replace(replace('111.111.122.000,00','.'),',','.') from dual;

but is there any other way like change the NLS_NUMERIC_CHARACTERS and change value before inserting into table.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 14 2015
Added on Jul 17 2015
13 comments
1,970 views