ANR2900W
The character string 'string' was truncated during assignment.

Explanation

Truncation occurred during assignment of an SQL character string. For example, the expression CAST( 'Hello' AS CHAR(2) ) will result in truncation because the string 'Hello' (length 5) can not fit in the target type CHAR(2) without loss of trailing characters.

System action

This warning can occur before or after SQL query processing, but does not terminate query processing.

User response

None.