oracle資料庫管理系統常見的錯誤之一如下: Listener refused the connection with the following error:ORA-12519, TNS:no appropriate service handler foundThe Connection des ...
oracle資料庫管理系統常見的錯誤之一如下:
Listener refused the connection with the following error:
ORA-12519, TNS:no appropriate service handler found
The Connection descriptor used by the client was:
10.216.4.202:1521:orcl
這個問題是總是報客戶端連接間歇性失敗,更改本地配置的連接池屬性設置,其實這個問題是Oracle不能夠正常連接所做出的假設判斷
可以測試一下資料庫連接是否正常,如果可以連接資料庫,看是否可以執行簡單的查詢語句,或者直接在查詢語句中輸入以下代碼:
(1.)select count(*) from v$process; 取得資料庫目前的進程數。
(2.)select value from v$parameter where name = 'processes'; 取得進程數的上限。
(3.)select * from v$license; 查詢資料庫自啟動以來最大的併發數量
如果連接達到資料庫連接上限,就會訪問不到資料庫信息。
解決的方法嘛,修改修改initSID.ora中的processes的大小
或者剛上班的小菜鳥,唯一的辦法是 等待!(或者聯繫項目經理)^..^