Oracle Message PCB-00230 - Indicator table size must not be less than its host variable

ERRORIndicator table size must not be less than its host variable
CAUSEAn host variable table was used with an indicator table declared with a smaller dimension. For example: EXEC SQL BEGIN DECLARE SECTION END-EXEC. 01 EMP-NUM OCCURS 4 TIMES PIC S9(4) COMP. 01 EMP-NUM-IND OCCURS 2 TIMES PIC S9(4) COMP. EXEC SQL END DECLARE SECTION END-EXEC. ... SELECT ... INTO EMP-NUM: EMP-NUM-IND ...
ACTIONIncrease the size of the indicator table.