oracle游标增加的解决办法
1、问题:java.sql.SQLException: ORA-01000: 超出打开游标的最大数
2、解决:这个问题最好是通过优化sql来解决,当然也可以通过修改ORACLE的参数open_cursors 来解决。
(1)oraclehome\admin\数据库名字\pfile 下面的init.ora里面有参数 ###########################################
# 游标和库高速缓存 ###########################################
open_cursors=300
你可以自己修改
(2)Oracle9i以上版本可通过
SQL>show parameter open_cursors;
SQL>conn sys as sysdba
SQL>alter system set open_cursors=1500 scope=both
(3)重启系统使它生效。
阅读(1613) | 评论(0) | 转发(0) |