Oracle打开游标问题

时间:2015-04-16 12:14:19

标签: oracle java-ee cursor oracle-cursor

我的java应用程序有一个问题。我收到ORA-01000最大游标打开错误,我正在关闭所有连接语句和游标,如:

String proc = "{call sp_name(?)}";
Connection connection = getConnection();

if(connection == null)
    throw new SQLException("Null connection");

CallableStatement procin = connection.prepareCall(proc);
if(procin == null)
   throw new SQLException("Null statement");

procin.setInt(1,customerId);
procin.execute();

if(procin != null)
   procin.close();
if(connection != null)
   connection.close();

当我查询最大限制并打开游标时,我得到限制400,打开游标300。

select 
   max(a.value) as hwm_open_cur, 
   p.value      as max_open_cur
from 
   v$sesstat a, 
   v$statname b, 
   v$parameter p
where 
   a.statistic# = b.statistic# 
and 
   b.name = 'opened cursors current'
and 
   p.name= 'open_cursors'
group by p.value; 

在其他情况下,当我查询与我相关的打开游标时,我只得到11个打开的游标,因此我不明白我该怎么做。

SELECT LAST_SQL_ACTIVE_TIME  ,SQL_TEXT 
FROM  v$open_cursor WHERE UPPER(SQL_TEXT) LIKE '%COLL%' order by sql_text 

所以这是一个问题,我怎么能得到这个问题,上面的查询出了什么问题?

0 个答案:

没有答案