Link to home
Start Free TrialLog in
Avatar of hc2342uhxx3vw36x96hq
hc2342uhxx3vw36x96hqFlag for United States of America

asked on

How to reset a DBMS_UTILITY.UNCL_ARRAY variable?

Hello,
In a PL/SQL stored procedure I am using the folllowing variable:
minnie DBMS_UTILITY.uncl_array;

In the procedure, I do many assignments:

minnie(0) := '1';
minnie(1) := '3'
... and so on.

How can I reset this DMBS_UTILITY.UNCL_ARRAY variable?
ASKER CERTIFIED SOLUTION
Avatar of Naveen Kumar
Naveen Kumar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hc2342uhxx3vw36x96hq

ASKER

Perfect solution, many thanks ;-)
but which one did exactly work for you because i gave you two options... just got curious as to which one you have used.