oracle如何查看當前有哪些用戶連接到數據庫


oracle如何查看當前有哪些用戶連接到數據庫
轉自:https://www.cnblogs.com/caogang/p/4546072.html
 
可以執行以下語句:
select username,serial#, sid from v$session;  ---查詢用戶會話
alter system kill session 'serial#, sid ';---刪除相關用戶會話
 
建議以后台登陸刪除用戶會話
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;


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM