标签:sele windows com image 修改 acl style 实战 grant
权限:
如果要执行某种特定的数据库操作,就要赋予系统的权限;
如果要执行访问其他方案的对象,就要赋予对象的权限。
1.创建ken和tom用户
create user ken identified by m123;
create user tom identified by m123;
2.系统授权
3.回收系统权限:说明系统权限不是级联回收
4.对象权限
希望monkey 查询scott的emp表;对于sal字段可以修改
grant select on emp to monkey;
grant update on emp(sal) to monkey;
回收权限:
撤销monkey的同时,ken也撤销了,所以是级联回收的
8.windows-oracle实战第八课 --管理权限和角色
标签:sele windows com image 修改 acl style 实战 grant
原文地址:https://www.cnblogs.com/dangjingwei/p/12128399.html