oracle數(shù)據(jù)庫(kù)忽然連不上了,一查是游標(biāo)數(shù)量超了。
1.查看游標(biāo)數(shù)
show parameter open_cursors
2.修改游標(biāo)數(shù)
alter system set open_cursors = 10000;
3.獲取打開的游標(biāo)數(shù)
select o.sid, osuser, machine, count(*) num_curs
from v$open_cursor o, v$session s
where user_name = 'AF651_U8'
and o.sid = s.sid
group by o.sid, osuser, machine
order by num_curs desc;
SID OSUSER MACHINE NUM_CURS
4.查詢某游標(biāo)執(zhí)行的sql
select q.sql_text
from v$open_cursor o, v$sql q
where q.hash_value = o.hash_value
and o.sid = 396;
5.解決問題的辦法:
--1.查找代碼不合理的地方,修改代碼。
--2.重啟oracle數(shù)據(jù)庫(kù)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- Oracle 遍歷游標(biāo)的四種方式匯總(for、fetch、while、BULK COLLECT)
- 詳解Oracle游標(biāo)的簡(jiǎn)易用法
- Oracle游標(biāo)的使用實(shí)例詳解
- Oracle中游標(biāo)Cursor基本用法詳解
- 詳解Oracle隱式游標(biāo)和顯式游標(biāo)
- Oracle存儲(chǔ)過程游標(biāo)用法分析
- Oracle出現(xiàn)超出打開游標(biāo)最大數(shù)的解決方法
- Oracle顯示游標(biāo)的使用及游標(biāo)for循環(huán)
- Oracle存儲(chǔ)過程返回游標(biāo)實(shí)例詳解
- Oracle 游標(biāo)使用總結(jié)
- Oracle使用游標(biāo)進(jìn)行分批次更新數(shù)據(jù)的6種方式及速度比對(duì)