ORA-12516, TNS:listener could not find available handler

前端 未结 2 694
旧巷少年郎
旧巷少年郎 2020-12-08 10:08

My error:

java.sql.SQLException: Listener refused the connection with the following error:

ORA-12516, TNS:listener could not find available handler with mat         


        
2条回答
  •  心在旅途
    2020-12-08 10:58

    You opened a lot of connections and that's the issue. I think in your code, you did not close the opened connection.

    A database bounce could temporarily solve, but will re-appear when you do consecutive execution. Also, it should be verified the number of concurrent connections to the database. If maximum DB processes parameter has been reached this is a common symptom.

    Courtesy of this thread: https://community.oracle.com/thread/362226?tstart=-1

提交回复
热议问题