实际上,这个错误的原因,主要还是代码问题引起的. ora-01000: maximum open cursors exceeded. 表示已经达到一个进程打开的最大游标数. 这样的错误很容易出现在Java代码中的主要原因是:Java代码在执行conn.createStatement()和conn.prepareStatement()的时候,实际上都是相当与在数据库中打开了一个cursor.尤其是,如果你的createStatement和prepareStatement是在一个循环里面的话,…
oracle异常处理--ORA-01000:超出打开游标最大数https://www.cnblogs.com/zhaosj/p/4309352.htmlhttps://blog.csdn.net/u012465383/article/details/79017109解决方法:1.查看游标最大数:show parameter open_cursors;2.修改open_cursorsalter system set open_cursors=1000;commit;…