1、查看ORACLE最大游標數(shù)
C:\Documents and Settings\Administrator>sqlplus "sys/admin@test151 as sysdba"????? (sys以dba登錄test151服務)
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、查看當前打開的游標數(shù)目
SQL> select count(*) from v$open_cursor;
COUNT(*)
----------
17494
3、修改ORACLE最大游標數(shù)
SQL> alter system set open_cursors=1000 scope=both;
系統(tǒng)已更改。
SQL> show parameter open_cursors;
NAME?? TYPE? VALUE
------------------------------------ ----------- ------------------------------
open_cursors integer???? 1000
關鍵詞標簽:ORACLE
相關閱讀
熱門文章 Oracle中使用alter table來增加,刪除,修改列的語法 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 誤刪Oracle數(shù)據(jù)庫實例的控制文件 為UNIX服務器設置Oracle全文檢索
人氣排行 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 Oracle中使用alter table來增加,刪除,修改列的語法 ORACLE SQL 判斷字符串是否為數(shù)字的語句 ORACLE和SQL語法區(qū)別歸納(1) oracle grant 授權語句 ORACLE修改IP地址后如何能夠使用 如何加速Oracle大批量數(shù)據(jù)處理 Oracle刪除表的幾種方法