Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Fehler kann nicht behoben werden - java.sql.SQLException:ORA-01000:maximale Anzahl geöffneter Cursor überschritten

Wenn Sie versuchen, denselben Vorgang 1000 Mal auszuführen, würde ich zur re-using raten dasselbe PreparedStatement oder mit addBatch() und executeBatch() Combo.

Wenn Sie planen, Ihr PreparedStatement wiederzuverwenden, können Sie Folgendes tun:

public void insertARow(PreparedStatement ps, ArrayList<String> row){
 //your code
}

public void calledMethod(){
 String insert = "INSERT INTO user.info(cola,colb) values(?,?)";
 PreparedStatement ps = null;

 try{
   ps = con.prepareStatement(insert);
   /**
    * Here you make the call to insertARow passing it the preparedstatement that you
    * have created. This in your case will be called multiple times.
    */
   insertARow(ps, row);
 }finally{
   if(ps != null){
     //close ps
   }
 }
}