Message Oracle PCC-00132 - Indicator array size must not be less than its host variable

ERRORIndicator array size must not be less than its host variable
CAUSEAn host variable array was used with an indicator array declared with a smaller dimension. For example: EXEC SQL BEGIN DECLARE SECTION; int dept_no[20]; short dept_no_ind[10]; EXEC SQL END DECLARE SECTION; ... SELECT ... INTO dept_no: dept_no_ind ...
ACTIONIncrease the size of the indicator array.