時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
--select * from dba_users; 查詢數(shù)據(jù)庫中的所有用戶
--alter user TEST_SELECT account lock; 鎖住用戶
--alter user TEST_SELECT account unlock; 給用戶解鎖
--create user xujin identified by?? xujin; 建立用戶
--grant create tablespace to xujin; 授權(quán)
--grant select on tabel1 to xujin; 授權(quán)查詢
--grant update on table1 to xujin;
--grant execute on procedure1 to xujin 授權(quán)存儲過程
--grant update on table1 to xujin with grant option; 授權(quán)更新權(quán)限轉(zhuǎn)移給xujin用戶,許進用戶可以繼續(xù)授權(quán);
--收回權(quán)限
--revoke select on table1 from xujin1; 收回查詢select表的權(quán)限;
--revoke all on table1 from xujin;
/*grant connect to xujin;
revoke connect from xujin
grant select on xezf.cfg_alarm to xujin;
revoke select on xezf.cfg_alarm from xujin;*/
--select table_name,privilege from dba_tab_privs where grantee='xujin' 查詢一個用戶擁有的對象權(quán)限
--select * from dba_sys_privs where grantee='xujin' 查詢一個用戶擁有的系統(tǒng)權(quán)限
--select * from session_privs --當(dāng)錢會話有效的系統(tǒng)權(quán)限
--角色
--create role xujin1;--建立xujin1角色
--grant insert on xezf.cfg_alarm to xujin1; 將插入表的信息
--revoke insert on xezf.cfg_alarm from xujin1; 收回xujin1角色的權(quán)限
--grant xujin1 to xujin ; 將角色的權(quán)限授權(quán)給xujin;
-- create role xujin2;
--grant xujin1 to xujin2; 將角色xujin1授權(quán)給xujin2;
--alter user xujin default xujin1,xujin2; 修改用戶默認角色
-- DROP ROLE xujin1;刪除角色1;
--select * from role_sys_privs where role=xujin1;
--查看許進1角色下有什么系統(tǒng)權(quán)限;
--select granted_role,admin_option from role_role_privs where role='xujin2';
--查看xujin1角色下面有什么角色權(quán)限
--select * from role_sys_privs where role='xujin2';
--select table_name,privilege from role_tab_privs where role='xujin1';
--select * from dba_role_privs where grantee='xujin' --查看用戶下面有多少個角色;
關(guān)鍵詞標(biāo)簽:oracle,grant,授權(quán)語句
相關(guān)閱讀
熱門文章 Oracle中使用alter table來增加,刪除,修改列的語法 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 誤刪Oracle數(shù)據(jù)庫實例的控制文件 為UNIX服務(wù)器設(shè)置Oracle全文檢索
人氣排行 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 Oracle中使用alter table來增加,刪除,修改列的語法 ORACLE SQL 判斷字符串是否為數(shù)字的語句 ORACLE和SQL語法區(qū)別歸納(1) oracle grant 授權(quán)語句 ORACLE修改IP地址后如何能夠使用 如何加速Oracle大批量數(shù)據(jù)處理 Oracle刪除表的幾種方法