先用超级管理员(sys)登陆服务器:

sqlplus "sys/***@orcl as sysdba"

连接到:
Oracle

查看ORACLE最大游标数:

SQL> show parameter open_cursors;

查看当前打开的游标数目:

SQL> select count(*) from v$open_cursor;

设置数据库最大游标数量:

SQL>alter system set open_cursors=3000 scope=both;

相关文章:

  • 2018-09-20
  • 2021-07-12
  • 2021-07-19
  • 2022-12-23
  • 2021-12-29
  • 2021-09-23
  • 2021-07-11
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-05
  • 2021-12-15
  • 2021-06-26
相关资源
相似解决方案