ORA-12519,nbsp;TNS:nonbsp;appr…
生活随笔
收集整理的這篇文章主要介紹了
ORA-12519,nbsp;TNS:nonbsp;appr…
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
參考:http://www.cnblogs.com/ungshow/archive/2008/10/16/1312846.html
數據庫連接時,時斷時續,從網上看的解決方法!
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;
數據庫連接時,時斷時續,從網上看的解決方法!
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;
總結
以上是生活随笔為你收集整理的ORA-12519,nbsp;TNS:nonbsp;appr…的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [量化-025]某投资者的投资策略统计整
- 下一篇: 【maven本地打包脚本】Git/Svn