首頁  >  文章  >  資料庫  >  怎麼查詢oracle有哪些用戶

怎麼查詢oracle有哪些用戶

青灯夜游
青灯夜游原創
2022-02-22 16:49:3539523瀏覽

查詢oracle有哪些使用者的方法:1、執行「select * from dba_users;」語句;2、執行「select * from all_users;」語句;3、執行「select * from user_users;」語句。

怎麼查詢oracle有哪些用戶

本教學操作環境:Windows7系統、Oracle 11g版、Dell G3電腦。

查詢Oracle中所有使用者資訊

#1、檢視所有使用者:

select * from dba_users; 
select * from all_users; 
select * from user_users;

2、查看使用者或角色系統權限(直接賦值給使用者或角色的系統權限):

select * from dba_sys_privs; 
select * from user_sys_privs; (查看当前用户所拥有的权限)

3、查看角色(只能查看登陸使用者擁有的角色)所包含的權限

sql>select * from role_sys_privs;

4、檢視使用者物件權限:

select * from dba_tab_privs; 
select * from all_tab_privs; 
select * from user_tab_privs;

#5、檢視所有角色: 

select * from dba_roles;

6、查看使用者或角色所擁有的角色:

select * from dba_role_privs; 
select * from user_role_privs;

7、查看哪些使用者有sysdba或sysoper系統權限(查詢時需要對應權限)##

select * from V$PWFILE_USERS

8、SqlPlus中查看一個使用者所擁有權限

SQL>select * from dba_sys_privs where grantee='username'; 其中的username即用户名要大写才行。
比如: SQL>select * from dba_sys_privs where grantee='TOM';

#9、Oracle刪除指定使用者所有表的方法

select 'Drop table '||table_name||';' from all_tables where owner='要删除的用户名(注意要大写)';

# 10、刪除使用者

drop user user_name cascade; 如:drop user SMCHANNEL CASCADE

11、取得目前使用者下所有的表:

select table_name from user_tables;

12、刪除某使用者下所有的表數據:

select 'truncate table ' || table_name from user_tables;

13、禁止外鍵ORACLE資料庫中的外鍵約束名稱都在表user_constraints中可以查到。

其中constraint_type='R'表示為外鍵約束。

启用外键约束的命令为:alter table table_name enable constraint constraint_name 
禁用外键约束的命令为:alter table table_name disable constraint constraint_name

然後再用SQL查出資料庫中所以外鍵的約束名稱:

select 'alter table '||table_name||' enable constraint '||constraint_name||';' from user_constraints where constraint_type='R'select 'alter table '||table_name||' disable constraint '||constraint_name||';' from user_constraints where constraint_type='R'

14、ORACLE停用/啟用外鍵和觸發器- -啟用腳本

SET SERVEROUTPUT ON SIZE 1000000
BEGIN
for c in (select 'ALTER TABLE '||TABLE_NAME||' ENABLE CONSTRAINT '||constraint_name||' ' as v_sql from user_constraints
where CONSTRAINT_TYPE='R') loop
DBMS_OUTPUT.PUT_LINE(C.V_SQL);
begin
EXECUTE IMMEDIATE c.v_sql;
exception when others then
dbms_output.put_line(sqlerrm);
end;
end loop; 
for c in (select 'ALTER TABLE '||TNAME||' ENABLE ALL TRIGGERS ' AS v_sql from tab where tabtype='TABLE') loop
dbms_output.put_line(c.v_sql);
begin
execute immediate c.v_sql;
exception when others then
dbms_output.put_line(sqlerrm);
end;
end loop;
end;
/ 
commit;

--停用腳本

SET SERVEROUTPUT ON SIZE 1000000
BEGIN
for c in (select 'ALTER TABLE '||TABLE_NAME||' DISABLE CONSTRAINT '||constraint_name||' ' as v_sql from user_constraints
where CONSTRAINT_TYPE='R') loop
DBMS_OUTPUT.PUT_LINE(C.V_SQL);
begin
EXECUTE IMMEDIATE c.v_sql;
exception when others then
dbms_output.put_line(sqlerrm);
end;
end loop; 
for c in (select 'ALTER TABLE '||TNAME||' DISABLE ALL TRIGGERS ' AS v_sql from tab where tabtype='TABLE') loop
dbms_output.put_line(c.v_sql);
begin
execute immediate c.v_sql;
exception when others then
dbms_output.put_line(sqlerrm);
end;
end loop;
end;
/
commit;

推薦教學:《

Oracle教學

以上是怎麼查詢oracle有哪些用戶的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn