症狀:系統運行了一段時間報錯,超出打開游標的最大數
step 1:
查看數據庫當前的游標數配置slqplus:show parameter open_cursors;
如果數據沒做修改,通常默認為300的。
step 2:
查看游標使用情況,select o.sid, osuser, machine, count(*) num_curs
from v$open_cursor o, v$session s
where /*user_name = 'bhoa'
and */o.sid = s.sid
group by o.sid, osuser, machine
order by num_curs desc;
估計肯定是超出了300;
step 3:
加大游標數量;
alter system set open_cursors=2000 scope=both;
再查看游標數量,為2000。
再執行程序ok