Troubleshooting Open Cursor Issues

25 Troubleshooting Open Cursor Issues

Similar to any application that uses Oracle Database as backend repository, Oracle Identity Manager runs several SQL statements. For every SQL statement execution in Oracle Database, certain area in the memory is allocated. Oracle PL/SQL allows you to name this area. This private SQL area is called context area or cursor. These cursors take up space in the shared pool, which is essential memory component of Oracle Database, specifically in the library cache. To keep a renegade session from filling up the library cache or clogging the CPU with millions of parse requests, the OPEN_CURSORS database parameter must be set to limit the cursors.java

The OPEN_CURSORS parameter sets the maximum number of cursors that each session can have open, per session. For example, if the value of OPEN_CURSORS is set to 1000, then each session can have up to 1000 cursors open at one time.sql

Sometimes, the number of cursors in the database exceeds the maximum limit, and as a result, the following error is thrown:c#

java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded ORA-00604: error occurred at recursive SQL level 1

To troubleshoot the open cursors issue:session

  1. Login to the SYS schema (or any schema with DBA privilege) of the database.oracle

  2. Find out the session that is causing the error by using the following SQL statement:app

    select a.value, s.username, s.sid, s.serial# from v$sesstat a, v$statname b, v$session s where a.statistic# = b.statistic#  and s.sid=a.sid and b.name = 'opened cursors current' and s.username is not null;

    The output displays the details of all sessions. You can see the maxed out session IDs.this

  3. To display which queries are causing maxing out of open cursors, run the following SQL statement:spa

    select  sid ,sql_text, count(*) as "OPEN CURSORS", USER_NAME from v$open_cursor where sid in ($SID);

    The top queries that are opening maximum cursors and are not closing subsequent cursors gracefully are displayed.3d

    If some code is running above SQL queries, then check that Java Statement, Resultset, or connection are closing properly or not if they have access to the code. If the code is not closing the connections, then close all the open connections properly so that you can save memory leaks in the code and save database memory.code

  4. To verify if you have set the value of the OPEN_CURSORS parameter high enough, monitor v$sesstat for the maximum opened cursors current, as shown:

    SELECT  max(a.value) as highest_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;

    If your sessions are running close to the limit, then increase the value of the OPEN_CURSORS parameter.

 問題緣由分析:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public class Insertwork {
	public static void main(String[] args) {

		PreparedStatement psbatchinsert = null;	
		Connection connection = getOracleConnection();
		try {
			connection.setAutoCommit(false);
			String insertsql = "insert XXXX"
		} catch (SQLException e1) {

			e1.printStackTrace();
		}
		int k=0;//for autocommit
		
		for (int i = 100; i < 20100; i++) {		
            Connection connection = getOracleConnection();	###問題代碼一
            psbatchinsert=connection.prepareStatement(insertsql);###問題代碼二
            int j=i+1000;
			try {
				psbatchinsert.setInt(1,j);
				psbatchinsert.setString(2, loginname);
				psbatchinsert.addBatch();
				if(k==1000){
				psbatchinsert.executeBatch();
				connection.commit();
				k=0;
				}
				k++;
				
			} catch (SQLException e) {
				
				try {
					connection.rollback();
				} catch (SQLException e1) {
					e1.printStackTrace();
				}

				e.printStackTrace();
			}
			
		}//finally commit
		try {
			psbatchinsert.executeBatch();
			connection.commit();
			connection.close();
		} catch (SQLException e) {
			e.printStackTrace();
		}
		System.out.println("####insert success################");
	

	}

	public static Connection getOracleConnection() {

		Connection conn = null;

		try {

			Class.forName("oracle.jdbc.driver.OracleDriver");

			conn = DriverManager.getConnection("jdbc:oracle:thin:@127.0.0.1:1533:test73db", "amc", "amc00");

		} catch (Throwable e) {

			e.printStackTrace();

		}
		return conn;

	}

}

仔細分析一下上面的代碼發現有兩個問題

Connection connection = getOracleConnection();	###問題代碼一
psbatchinsert=connection.prepareStatement(insertsql);###問題代碼二

由於把這兩個語句放在循環裏面了,問題一致使

java.sql.SQLRecoverableException: IO Error: Got minus one from a read call

問題二致使

java.sql.SQLException: - ORA-01000: maximum open cursors exceeded 

相關文章
相關標籤/搜索