Oracle數據庫連接 ORA-12519: TNS: 沒有找到適用的服務處理 The Connection descriptor used by the client was: 127.0.0.1:1521:ORCL


select count(*) from v$process --當前的連接數

select value from v$parameter where name = 'processes' --數據庫允許的最大連接數

 

報錯原因是最大連接數不夠,以下代碼執行一下,再重啟一下數據庫就好了。


alter system set processes = 300 scope = spfile *修改最大連接數:

 

*重啟數據庫:

shutdown immediate
startup

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM