Hi Team,
I have noticed performance issues with my plsql code. Could you please conform if it is expected time to perform below FOR loop.
FOR i IN 1..36000
LOOP
dbms_output.Put_line ('I Value: '|| i);
END LOOP;
Normal for loop with 1..36000 iterations:
Normal Loop finished in : 1.56 mins
The similar logic in java is completing in 2 seconds.
DB Version: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Please let me know if you need more details.
Thanks,
Samba