Doing a describe on a table defined as such:
I get this when I select data:
The data is not the same length. Spooling to and counting the lengths confirm that each are different length.
Any ideas?
Thx in advance.
Code:
desc table_num
Name Null? Type
-------------- -------- ----------------------------
NUMBER1 NUMBER(10,2)
NUMBERON2 NUMBER(10,2)
I get this when I select data:
Code:
Select * from table_num;
NUMBER1 NUMBERON2
---------- ------------
1024.66 0
The data is not the same length. Spooling to and counting the lengths confirm that each are different length.
Any ideas?
Thx in advance.