sqlplus / as sysdba // 进入sql>
show parameter cursors // 查看参数值 默认为300 50
alter system set open_cursors=1000 scope=both;
alter system set session_cached_cursors=300 scope=spfile; //修改参数
shutdown immediate //停止数据库
startup // 启动数据库
2022-08-27 17:10:29
sqlplus / as sysdba // 进入sql>
show parameter cursors // 查看参数值 默认为300 50
alter system set open_cursors=1000 scope=both;
alter system set session_cached_cursors=300 scope=spfile; //修改参数
shutdown immediate //停止数据库
startup // 启动数据库