ORA-12519: TNS:no appropriate service handler found 解決方法


ORA-12519: TNS:no appropriate service handler found 解決

注意:首先腰登錄DBA管理

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

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

 

修改最大連接數:

alter system set processes = 300 scope = spfile;

 

重啟數據庫:

shutdown immediate;

startup;

 

--查看當前有哪些用戶正在使用數據

SELECT osuser, a.username,cpu_time/executions/1000000||'s', sql_fulltext,machine

from v$session a, v$sqlarea b

where a.sql_address =b.address order by cpu_time/executions desc;

注意:出現這個問題的最大原因是大家看一下自己的資源是否關閉了!


免責聲明!

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



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