ORA-00604: 递归 SQL 级别 1 出现错误 ORA-01000: 超出打开游标的最大数

ORA-00604: 递归 SQL 级别 1 出现错误 ORA-01000: 超出打开游标的最大数

查询当前打开游标的最大值

SQL> show parameter open_cursors;NAME                     TYPE     VALUE
------------------------------------ ----------- ------------------------------
open_cursors     integer     300调整当前打开游标的最大值
SQL> alter system set open_cursors = 1000;System altered.SQL> commit;Commit complete.