查询当前打开游标的最大值
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.