PCB-00235: Table size mismatch in INTO/USING. Minimum is: number



PCB-00235: Table size mismatch in INTO/USING. Minimum is: number..

Answer / guest

Cause: The size of a table variable in an INTO/USING clause
of a dynamic EXECUTE statement has been ARRAYLEN...EXECUTE'd
while the other host variable has not and is not a table of
dimension 1 or a plain non-table host variable. Example: 01
X PIC X(10) OCCURS 10. 01 Y PIC S9(4) COMP OCCURS 10. 01 Z
PIC S9(4) COMP. ... EXEC SQL ARRAYLEN X (DIM) EXECUTE
END-EXEC. ... EXEC SQL EXECUTE S1 USING :X, :Y END-EXEC. <--
error EXEC SQL EXECUTE S1 USING :X, :Z END-EXEC. <-- ok
Please note that this error differs from 233 in that it is
an ERROR not a WARNING.

Action: ARRAYLEN...EXECUTE all of the table variables in the
INTO/USING clause or those host variables not
ARRAYLEN...EXECUTEd need to be of dimension 1.

Please add more information about this Error

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle Errors Interview Questions

ORA-01626: rollback segment number 'string' cannot handle more transactions

1 Answers  


DRG-50703: listener startup error

1 Answers  


ORA-26527: local store callback init phase failed for 'string.string'

1 Answers  


PLS-00995: unhandled exception # string

1 Answers  


TNS-03501: OK

1 Answers  


ORA-25291: Buffer does not exist for the specified queue

1 Answers  


ORA-02258: duplicate or conflicting NULL and/or NOT NULL specifications

1 Answers  


ORA-29865: indextype is invalid

1 Answers  


ORA-31204: DBMS_LDAP: PL/SQL - Invalid LDAP Session.

1 Answers  


CLSR-00006: Error encountered when writing file string

1 Answers  


ORA-02069: global_names parameter must be set to TRUE for this operation

1 Answers  


PLS-01713: The constraints on these types do not match

1 Answers  


Categories