Select query returns no records after database upgrade
Hello,
After the database upgrade to Oracle 11.2.0.3.0, I see a strange behaviour of an sql query.
There was a database upgrade performed from Oracle version 10g to 11.2.0.3.0 using expdp and impdp method.
Now on the target database table , there is a column with datatype as NUMBER(38,0).
When I do a query "select * from mytable where columnoid=1434098226; I donot see any results
However,using SQL developer tool , I can see the record exists.
Also if I execute select * from mytable where columnoid like '1434098226%' , I am able to see the output.
Could you please suggest why this is happening ? What shall I check? Is it a database bug.