中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

查詢oracle中所有用戶信息

發布時間:2020-07-11 23:29:17 來源:網絡 閱讀:500 作者:liujianguo1104 欄目:關系型數據庫

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;


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚宁县| 张掖市| 达孜县| 印江| 鄢陵县| 奉化市| 唐海县| 安阳市| 武威市| 涿州市| 江西省| 清新县| 班戈县| 梅州市| 绿春县| 古蔺县| 大竹县| 寿光市| 嵩明县| 隆安县| 黄冈市| 新巴尔虎左旗| 青田县| 阜宁县| 博野县| 玛多县| 驻马店市| 银川市| 修武县| 元朗区| 麻栗坡县| 庐江县| 金昌市| 年辖:市辖区| 平顶山市| 厦门市| 遂宁市| 娱乐| 青浦区| 田东县| 凭祥市|