1、檢視當前的資料庫連線數
2、資料庫允許的最大連線數
3、修改資料庫最大連線數
alter system set processes = 300 scope = spfile; --修改最大連線數:
4、關閉/重啟資料庫
shutdown immediate; --關閉資料庫
startup; --重啟資料庫
5、檢視當前有哪些使用者正在使用資料
select osuser, a.username, cpu_time/executions/1000000||'s', b.sql_text, machine
from v$session a, v$sqlarea b
where a.sql_address =b.address
order by cpu_time/executions desc; --檢視當前有哪些使用者正在使用資料
6、 --當前的session連線數
select count(*) from v$session --當前的session連線數
7、當前併發連線數
select count(*) from v$session where status='active'; --併發連線數
Oracle檢視連線數
有時候連得上資料庫,有時候又連不上.可能是資料庫上當前的連線數目已經超過了它能夠處理的最大值.select count from v process 當前的連線數 select value from v parameter where name processes 資料庫允許的最大連線數 修改最大連...
檢視Oracle連線數
size xx small oraclesqljdbc.做資料庫開發的時候,有時候會遇到連線超出最大限制的問題,這時候,我們需要檢視資料庫的連線數,下面說說如何檢視oracle的連線數 1.檢視oracle最大連線數 sql show parameter processes 最大連線數 2.修改最大...
檢視oracle當前連線數
檢視oracle當前連線數 怎樣檢視oracle當前的連線數呢?只需要用下面的sql語句查詢一下就可以了。select from v session where username is not null select username,count username from v session wh...