日期:2014-05-16  浏览次数:20451 次

oracle权限传递
系统权限传递,在系统用户授权的时候,如果user_sys_privs视图的ADM列为no的时候,那么该用户是不可以再把权限分配给别的用户,只有当yes的时候才能传递,那么要在授权的时候加上这样的一句话:with admin option。例如:grant alter any table to public with admin option。

对象权限是谁创建表谁授权;对象权限的传递是with grant option。例如:grant select on mytable to public with grant option。这样被授权的用户也可以把表的权限分配出去。