“java.sql.SQLException: ORA-00604: 递归 SQL 级别 1 出现错误”的解决办法

系统保存某些信息时报:

Caused by: java.sql.SQLException: ORA-00604: 递归 SQL 级别 1 出现错误

ORA-01000: 超出打开游标的最大数

ORA-00604: 递归 SQL 级别 1 出现错误

ORA-01000: 超出打开游标的最大数

ORA-01000: 超出打开游标的最大数

解决办法:

SQL> show parameter open_cursors
 
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
open_cursors                         integer     300
 
SQL> alter system set open_cursors=1000 scope=both;
 
System altered
 
SQL> show parameter open_cursors
 
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
open_cursors                         integer     1000

你可能感兴趣的:(数据库)