您的位置:首页 > 数据库

21. orcle导出sql脚本时,提示“超出打开游标最大数”

2014-12-30 17:40 183 查看
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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐