1.解决办法:修改下打开游标最大数即可
SQL> show parameter open_cursors;
NAME TYPE VALUE
------------------------------------ ----------- ---------------
open_cursors integer 300
修改open_cursors
SQL> alter system set open_cursors=1000;
系统已更改。
SQL> commit;
提交完成。
SQL> show parameter open_cursors;
NAME TYPE VALUE
------------------------------------ ----------- ---------------------
open_cursors integer 1000
时间: 2024-10-20 08:35:34