S05009

Error Code

S05009

Error Message

The scale of Decimal should be an integer. RefId: S05009

Probable Causes

This error occurs when the scale of a DECIMAL value is not an integer.

For example, an error may arise because the scale of the DECIMAL value is of STRING type.

v = array(DECIMAL32("2"))

Solutions

Set the scale of each DECIMAL value to an integer.

v = array(DECIMAL32(2))