oracle异常处理——ORA-01000:超出打开游标最大数

oracle异常处理——ORA-01000:超出打开游标最大数
https://www.cnblogs.com/zhaosj/p/4309352.html
https://blog.csdn.net/u012465383/article/details/79017109
解决方法:
1.查看游标最大数:
show parameter open_cursors;
2.修改open_cursors
alter system set open_cursors=1000;
commit;

原文地址:https://www.cnblogs.com/shujk/p/12775635.html