我們將通過介紹命令的方式
我們將從創建Oracle用戶權限表 開始談起
一
sys;//系統管理員
system;//本地管理員
scott;//普通用戶
sys;//系統管理員
system;//本地管理員
scott;//普通用戶
二
sqlplus / as sysdba;//登陸sys帳戶
sqlplus sys as sysdba;//同上
sqlplus scott/tiger;//登陸普通用戶scott
sqlplus / as sysdba;//登陸sys帳戶
sqlplus sys as sysdba;//同上
sqlplus scott/tiger;//登陸普通用戶scott
三
create user zhangsan;//在管理員帳戶下
alert user scott identified by tiger;//修改密碼
create user zhangsan;//在管理員帳戶下
alert user scott identified by tiger;//修改密碼
四
/*管理員授權*/
grant create session to zhangsan;//授予zhangsan用戶創建session的權限
grant unlimited session to zhangsan;//授予zhangsan用戶使用表空間的權限
grant create table to zhangsan;//授予創建表的權限
grante drop table to zhangsan;//授予刪除表的權限
grant insert table to zhangsan;//插入表的權限
grant update table to zhangsan;//修改表的權限
grant all to public;//這條比較重要
/*管理員授權*/
grant create session to zhangsan;//授予zhangsan用戶創建session的權限
grant unlimited session to zhangsan;//授予zhangsan用戶使用表空間的權限
grant create table to zhangsan;//授予創建表的權限
grante drop table to zhangsan;//授予刪除表的權限
grant insert table to zhangsan;//插入表的權限
grant update table to zhangsan;//修改表的權限
grant all to public;//這條比較重要
/*oralce對權限管理比較嚴謹
grant select on tablename to zhangsan;//授予zhangsan用戶查看指定表的權限
grant drop on tablename to zhangsan;//授予刪除表的權限
grant insert on tablename to zhangsan;//授予插入的權限
grant update on tablename to zhangsan;//授予修改表的權限
grant insert(id) on tablename to zhangsan;
grant update(id) on tablename to zhangsan;//授予對指定表特定字段的插入和修改權限
grant alert all table to zhangsan;//授予zhangsan用戶alert任意表的權限
/*oralce對權限管理比較 嚴謹
grant select on tablename to zhangsan;//授予zhangsan用戶查看指定表的權限
grant drop on tablename to zhangsan;//授予刪除表的權限
grant insert on tablename to zhangsan;//授予插入的權限
grant update on tablename to zhangsan;//授予修改表的權限
grant insert(id) on tablename to zhangsan;
grant update(id) on tablename to zhangsan;//授予對指定表特定字段的插入和修改權限
grant alert all table to zhangsan;//授予zhangsan用戶alert任意表的權限
五
基本語法同grant
基本語法同grant
六
select * from user_sys_privs;//查看當前用戶所有權限
select * from user_tab_privs;//查看所用用戶對表的權限
select * from user_sys_privs;//查看當前用戶所有權限
select * from user_tab_privs;//查看所用用戶對表的權限
七
/*需要在表名前加上用戶名
select * from zhangsan
/*需要在表名前加上用戶名
select * from zhangsan
八
即用戶A將權限授予B
grant alert table on tablename to zhangsan with admin option;//關鍵字 with admin option
grant alert table on tablename to zhangsan with grant option;//關鍵字 with grant option效果和admin類似
grant alert table on tablename to zhangsan with admin option;//關鍵字 with admin option
grant alert table on tablename to zhangsan with grant option;//關鍵字 with grant option效果和admin類似
九
角色即權限的集 合
create role myrole;//創建角色
grant create session to myrole;//將創建session的權限授予myrole
grant myrole to zhangsan;//授予zhangsan用戶myrole的角色
drop role myrole;刪除角色
/*但是有些權限是不能授予給角色的
Oracle用戶權限表就 介紹到這裡
From:http://tw.wingwit.com/Article/program/Oracle/201311/17543.html