Oracle建立使用者及使用權限設定,oracle建立許可權
oracle使用者建立及使用權限設定
許可權:
create session
create table
unlimited tablespace
connect
resource
dba
例:
#sqlplus /nolog
SQL> conn / as sysdba;
SQL>create user username identified by password //建立使用者並賦予密碼
SQL> grant dba to username;
SQL> conn username/password
SQL> select * from user_sys_privs;
我們將從建立Oracle使用者權限表開始談起,然後講解登陸等一般性動作,使大家對Oracle使用者權限表有個深入的瞭解。
一、建立
sys;//系統管理員,擁有最高許可權
system;//本地管理員,次高許可權
scott;//普通使用者,密碼預設為tiger,預設未解鎖
二、登陸
sqlplus / as sysdba;//登陸sys帳戶
sqlplus sys as sysdba;//同上
sqlplus scott/tiger;//登陸普通使用者scott
三、系統管理使用者
create user vashon;//在系統管理員帳戶下,建立使用者vashon
alert user scott identified by tiger;//修改密碼
四,授予許可權
1、預設的普通使用者scott預設未解鎖,不能進行那個使用,建立的使用者也沒有任何許可權,必須授予許可權
grant create session to vashon;//授予vashon使用者建立session的許可權,即登陸許可權
grant unlimited tablespace to vashon;//授予vashon使用者使用資料表空間的許可權
grant create table to vashon;//授予建立表的許可權
grant drop table to vashon;//授予刪除表的許可權
grant drop any table tovashon;// 注意:即使以上是以管理員登陸並授權但還會提示許可權不夠,需要指定 "any"
grant insert table to vashon;//插入表的許可權
grant insert any table to vashon;//注意:即使以上是以管理員登陸並授權但還會提示許可權不夠,需要指定 "any"
grant update table to vashon;//修改表的許可權
grant update any table to vashon;//注意:即使以上是以管理員登陸並授權但還會提示許可權不夠,需要指定 "any"
grant all to public;//這條比較重要,授予所有許可權(all)給所有使用者(public)
2、oralce對許可權管理比較嚴謹,普通使用者之間也是預設不能互相訪問的,需要互相授權
grant select on tablename to vashon;//授予vashon使用者查看指定表的許可權
grant select any table to vashon;// 授予使用者查看本使用者下所有表的許可權
grant drop on tablename to vashon;//授予刪除表的許可權
grant insert on tablename to vashon;//授予插入的許可權
grant update on tablename to vashon;//授予修改表的許可權
grant insert(id) on tablename tovashon;
grant update(id) on tablename tovashon;//授予對指定表特定欄位的插入和修改許可權,注意,只能是insert和update
grant alert all table to vashon;//授予vashon使用者alert任意表的許可權
五、撤銷許可權
基本文法同grant,關鍵字為revoke
六、查看許可權
select * from user_sys_privs;//查看目前使用者所有許可權
select * from user_tab_privs;//查看所用使用者對錶的許可權
七、動作表的使用者的表
select * from vashon.tablename
八、許可權傳遞
即使用者A將許可權授予B,B可以將操作的許可權再授予C,命令如下:
grant alert table on tablename tovashon with admin option;//關鍵字 with admin option
grant alert table on tablename tovashon with grant option;//關鍵字 with grant option效果和admin類似
九、角色
角色即許可權的集合,可以把一個角色授予給使用者
create role myrole;//建立角色
grant create session to myrole;//將建立session的許可權授予myrole
grant myrole to vashon;//授予vashon使用者myrole的角色
drop role myrole;刪除角色
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。