以下的文章主要是介绍Oracle查看和修改其***的游标数,本文主要是通过相关代码的方式来引出Oracle查看和修改其***的游标数的实际操作步骤,以下就是文章的具体内容的描述,望你在浏览完之后,会有所收获。
1、Oracle查看Oracle***游标数
C:\DocumentsandSettings\Administrator>sqlplus"sys/admin@test151assysdba"
(sys以dba登录test151服务)
SQL*Plus: Release 9.2.0.1.0 – Production on 星期四 11月 5 09:08:04 2009
Copyright(c)1982,2002,OracleCorporation.Allrightsreserved.
连接到:
Oracle9iEnterpriseEditionRelease9.2.0.1.0-Production WiththePartitioning,OLAPandOracleDataMiningoptions JServerRelease9.2.0.1.0-Production SQL>showparameteropen_cursors; NAMETYPEVALUE open_cursorsinteger300
2、Oracle查看当前打开的游标数目
SQL>selectcount(*)fromv$open_cursor; COUNT(*) 17494
3、修改Oracle***游标数
SQL>altersystemsetopen_cursors=1000scope=both;
系统已更改。
SQL>showparameteropen_cursors; NAMETYPEVALUE open_cursorsinteger1000
相关文章
标签:Oracle