Hi,
when working with large numbers with 17 digits, even when whole integers, SQL window uses scientific notation and does not show anymore all digits. In companies, it's usual to work with large integer numbers (e.g. order numbers, part numbers, auto numbers) where all digits are important, especially the right ones which are suppressed in PL/SQL Developer. It's not feasible to convert these numbers TO_CHAR using SQL. In contrast, Oracle SQL Developer, a free product from Oracle, shows large numbers correctly.
Example:
drop table test;
create table test (a number(17));
insert into test values (12345678901234567);
select * from test;
A: 1.23456789012346E16
SQL window should offer a display format which either does not use scientific notation or still shows all digits.
when working with large numbers with 17 digits, even when whole integers, SQL window uses scientific notation and does not show anymore all digits. In companies, it's usual to work with large integer numbers (e.g. order numbers, part numbers, auto numbers) where all digits are important, especially the right ones which are suppressed in PL/SQL Developer. It's not feasible to convert these numbers TO_CHAR using SQL. In contrast, Oracle SQL Developer, a free product from Oracle, shows large numbers correctly.
Example:
drop table test;
create table test (a number(17));
insert into test values (12345678901234567);
select * from test;
A: 1.23456789012346E16
SQL window should offer a display format which either does not use scientific notation or still shows all digits.