THIS HAS SOLVED MY PROBLEM THANKS.
|
Author: Jenny Nguyen
|
|
How to fixed the error "OCI-22053: overflow error". While working in Reporting Services I get an error: OCI-22053: overflow error
You normally get this error because the returning dataset cotains a precision decimal values that is larger then the current dataset can support. Oracle number data type supports a larger precision then what the current dataset can hold. To get get around this issue just truncate the precision number down to a supportive level. You can do this by using the Round or TRUNC functions.
|
