程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle查看常用的系統信息

oracle查看常用的系統信息

編輯:Oracle教程

oracle查看常用的系統信息


總結了查看oracle數據庫的常用sql ,有助於分析優化出一個健壯的系統程序來。

1.當前的數據庫連接數:
select count(*) from v$process

2.數據庫允許的最大連接數:
select value from v$parameter where name = ‘processes’

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 vsessiona,vsqlarea b where a.sql_address =b.address order by cpu_time/executions desc;

6.當前的session連接數
select count(*) from v$session

7.並發連接數
select count(*) from v$session where status=’ACTIVE’

8.最大連接
show parameter processes

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved