权限:sql
create sessionsession
create tableide
unlimited tablespacespa
connectit
resourceio
dbatable
例:date
#sqlplus /nologselect
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用户权限表有个深刻的了解。
1、建立
sys;//系统管理员,拥有最高权限
system;//本地管理员,次高权限
scott;//普通用户,密码默认为tiger,默认未解锁
2、登录
sqlplus / as sysdba;//登录sys账户
sqlplus sys as sysdba;//同上
sqlplus scott/tiger;//登录普通用户scott
3、管理用户
create user zhangsan;//在管理员账户下,建立用户zhangsan
alert user scott identified by tiger;//修改密码
四,授予权限
一、默认的普通用户scott默认未解锁,不能进行那个使用,新建的用户也没有任何权限,必须授予权限
grant create session to zhangsan;//授予zhangsan用户建立session的权限,即登录权限
grant unlimited tablespace 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;//这条比较重要,授予全部权限(all)给全部用户(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;//授予对指定表特定字段的插入和修改权限,注意,只能是insert和update
grant alert all table to zhangsan;//授予zhangsan用户alert任意表的权限
5、撤销权限
基本语法同grant,关键字为revoke
6、查看权限
select * from user_sys_privs;//查看当前用户全部权限
select * from user_tab_privs;//查看所用用户对表的权限
7、操做表的用户的表
select * from zhangsan.tablename
8、权限传递
即用户A将权限授予B,B能够将操做的权限再授予C,命令以下:
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相似
9、角色
角色即权限的集合,能够把一个角色授予给用户
create role myrole;//建立角色
grant create session to myrole;//将建立session的权限授予myrole
grant myrole to zhangsan;//授予zhangsan用户myrole的角色
drop role myrole;删除角色