Oracle查看和修改其最大的游標(biāo)數(shù)
以下的文章主要是介紹Oracle查看和修改其***的游標(biāo)數(shù),本文主要是通過(guò)相關(guān)代碼的方式來(lái)引出Oracle查看和修改其***的游標(biāo)數(shù)的實(shí)際操作步驟,以下就是文章的具體內(nèi)容的描述,望你在瀏覽完之后,會(huì)有所收獲。
1、Oracle查看Oracle***游標(biāo)數(shù)
- C:\Documents and Settings\Administrator>sqlplus "sys/admin@test151 as sysdba"
(sys以dba登錄test151服務(wù))
SQL*Plus: Release 9.2.0.1.0 - Production on 星期四 11月 5 09:08:04 2009
- Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
連接到:
- Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
- With the Partitioning, OLAP and Oracle Data Mining options
- JServer Release 9.2.0.1.0 - Production
- SQL> show parameter open_cursors;
- NAME TYPE VALUE
- open_cursors integer 300
2、Oracle查看當(dāng)前打開(kāi)的游標(biāo)數(shù)目
- SQL> select count(*) from v$open_cursor;
- COUNT(*)
- 17494
3、修改Oracle***游標(biāo)數(shù)
- SQL> alter system set open_cursors=1000 scope=both;
系統(tǒng)已更改。
- SQL> show parameter open_cursors;
- NAME TYPE VALUE
- open_cursors integer 1000
以上的相關(guān)內(nèi)容就是對(duì)Oracle查看和修改其***的游標(biāo)數(shù)的介紹,望你能有所收獲。
【編輯推薦】