Toad truncating/rounding large Oracle numbers? -


We have the table with a 'value' field type NUMBER (20,7) . I do this in TOAD:

  update mytable set value = 1234567890123.1234567;  

Then I select:

From mytable, select value, to_char (value) PRICE TO_CHAR (PRICE) 1234567890123.12 "1234567890123.1234567"

The question is, Why are Todd's results reducing when displaying the NUMBER (20,7) field? The data is clearly there because it prints with to_char.

??

Todd limit number for 15 digits in the data grid. I believe this is because Excel numbers number 15 (or used to limit them) as well as numbers. You can turn on "scientific notation" in the option -> data grid -> data, check box display large numbers in scientific notation . It probably will not help, either.


Comments

Popular posts from this blog

Eclipse CDT variable colors in editor -

AJAX doesn't send POST query -

wpf - Custom Message Box Advice -