現象:oracle數據庫 有人能夠連上,有人不行,有時能夠連上,有時候又報標題的錯誤信息。sql
cmd 下 輸入sqlplus /nolog 數據庫
sql> conn / as sysdba;session
sql> select count(*) from v$process --當前的鏈接數oracle
sql> select value from v$parameter where name = 'processes' --數據庫容許的最大鏈接數cmd
發現最大鏈接數是150 ,當前鏈接數是148, 因此會致使有人能夠連上,有人不行,有時能夠連上,有時候又報標題的錯誤信息。io
解決方案:file
修改最大鏈接數:
alter system set processes = 300 scope = spfile;
重啓數據庫:
shutdown immediate;
startup;select
ps:
--查看當前有哪些用戶正在使用數據
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;im