Hi,
I created a "tablecar" and one columns as "Price NUMBER(25,2)" , car_name varchar2(3 byte).
In Toad;
select * from tablecar;
| Price | Car_Name
|
|---|
| 1341,15 | abc |
| 1402,84 | def |
In 11g shown as;
| Price | Car_Name
|
|---|
| 1341,15 | abc |
| 1402,84 | def |
In 12c shown as;
| Price | Car_Name
|
|---|
| 1341 | abc |
| 1403 | def |
In rpd, typed as double in same system. I do not want to need to change as column properties-> Data Format-> Decimal Places->2 .
If the column build as number(x,2) , report must show what accuately this column created as dataase.
Is there any special settings for this?
Version : Oracle Business Intelligence 12.2.1.2.0
Thank you,
Evren