Advantage Error Guide
Problem: The result of an exact numeric expression exceeds the range of resultant data type. An example is multiplication of two exact numeric values with large-scale (digits after the decimal point) values. This error may be returned during query preparation or query evaluation. Another example will be when the result of an expression with integer operands exceed the range of a signed 32 bit integer value.
Solution: Cast one of the operands to the approximate numeric (i.e., Double) or to an exact numeric with larger range.
See Also