I haven't nailed it down completely yet, but one example is the following script. The query should show '-1', but it will only show '-':
Code: Select all
create table x (x number(1));
insert into x values (-1);
select * from x;Thanks.
Code: Select all
create table x (x number(1));
insert into x values (-1);
select * from x;Code: Select all
select (1e80+2e70+3e60+4e50+5e40+6e30+7e20+8e10+9e0) "BigNum" from dual;