分享java帶來的快樂

          我喜歡java新東西

          查看oracle用戶數據庫連接數

          1、查詢oracle的連接數
          select count(*) from v$session;
          2、查詢oracle的并發連接數
          select count(*) from v$session where status='ACTIVE';
          3、查看不同用戶的連接數
          select username,count(username) from v$session where username is not null group by username;
          4、查看所有用戶:
          select * from all_users;
          5、查看用戶或角色系統權限(直接賦值給用戶或角色的系統權限):
          select * from dba_sys_privs;
          select * from user_sys_privs;
          6、查看角色(只能查看登陸用戶擁有的角色)所包含的權限
          select * from role_sys_privs;
          7、查看用戶對象權限:
          select * from dba_tab_privs;
          select * from all_tab_privs;
          select * from user_tab_privs;
          8、查看所有角色:
          select * from dba_roles;
          9、查看用戶或角色所擁有的角色:
          select * from dba_role_privs;
          select * from user_role_privs;
          10、查看哪些用戶有sysdba或sysoper系統權限(查詢時需要相應權限)
          select * from V$PWFILE_USERS;

           

          修改數據庫允許的最大連接數:

          alter system set processes = 300 scope = spfile;

           

          查看游標數量

          Select * from v$open_cursor Where user_name=''

           

          查詢數據庫允許的最大連接數:
          select value from v$parameter where name = 'processes';
          或者:show parameter processes;

           

          查詢數據庫允許的最大游標數:

          select value from v$parameter where name = 'open_cursors'

           

          查看oracle版本

          select banner from sys.v_$version;

          按降序顯示用戶"SYSTEM"為每個會話打開的游標數

          select o.sid, osuser, machine, count(*) num_curs  from v$open_cursor o, v$session s  where user_name = 'SYSTEM' and o.sid=s.sid   group by o.sid, osuser, machine  order by num_curs desc;

          posted on 2013-01-16 18:28 強強 閱讀(2073) 評論(0)  編輯  收藏 所屬分類: Oracle數據庫

          主站蜘蛛池模板: 阿克陶县| 洛宁县| 双城市| 天祝| 镇坪县| 修武县| 武邑县| 阜城县| 太康县| 裕民县| 卢湾区| 岳池县| 志丹县| 崇信县| 黔西县| 托克逊县| 叙永县| 永城市| 朝阳市| 高青县| 东乌珠穆沁旗| 石泉县| 怀远县| 光山县| 涞水县| 师宗县| 南通市| 和硕县| 和静县| 宁波市| 紫阳县| 高邮市| 鸡泽县| 厦门市| 万山特区| 宁蒗| 灵川县| 永昌县| 崇信县| 米脂县| 石泉县|