What is this parameter? What is it for? Why give this error?
ORA-01000: maximum open cursors exceeded
Thanks,
Amora
ORA-01000: maximum open cursors exceeded
INIT.ORA
FOR...LOOP
the cursor's "closing" is automatic!OPEN CURSOR
you must close it with close cursor.select from dual
I do not see the need in it.open cursor .. fetch .. close
for rec in (select... ) loop
maximum open cursors exceded
v$open_cursor
for the SID we were monitoringv$open_cursor
they also traimed what would be the select of table-based blocks ..I have read several topics from Guru Tom Kyte about it and he always prefers implicit cursor. (It's less code, easier to understand and never forget to close when finished).Taking advantage of the topic I would like to know in terms of Performace which would be best to use
v$open_cursor
returns me even queyes that I perform internally in the Program select into
Users browsing this forum: No registered users and 1 guest