Thursday, February 28, 2013
ORA-06530: Reference to uninitialized composite
ORA-06530: Reference to uninitialized composite
ORA-06512: at "PROCEDURE/PACKAGE", line 88
ORA-06512: at "PROCEDURE/PACKAGE", line 446
ORA-06512: at line 11
06530. 00000 - "Reference to uninitialized composite"
*Cause: An object, LOB, or other composite was...
ORA-06052: PL/SQL: numeric or value error on PL/SQL Collections First and Last
Cause:
The error ORA-06052: PL/SQL: numeric or value error would be found when using for loop on the type collection object, as shown below, and the collection is empty:
FOR i IN type_variable.FIRST..t_variable.LAST LOOP
----your code
End Loop ;
When the collection...