使用with admin option,被授权用户可将所获得的权限再次授予其它用户或角色,而且取消授权时不级联。例如: grant create session to user_a with admin option;1 则用户user_a用户拥有了“create session”权限,然后用户user_a操作: grant create session to user_b;1 则user_b也拥有了“create session”权限。 ...
1、with admin option 用于系统权限授权,with grant option 用于对象授权。 2、给一个用户授予系统权限带上with admin option 时,此用户可把此系统权限授予其他用户或角色,但收回这个用户的系统权限时,这个用户已经授予其他用户或角色的此系统权限不会因传播无效,如授予A系统权限create session with admin option,然后...
1、with admin option 用于系统权限授权,with grant option 用于对象授权。 2、给一个用户授予系统权限带上with admin option 时,此用户可把此系统权限授予其他用户或角色,但收回这个用户的系统权限时,这个用户已经授予其他用户或角色的此系统权限不会因传播无效,如授予A系统权限create session with admin option,然后...
oracle权限关于with admin option和with grant option的用法 问题:oracle权限关于with admin option和with grant option的用法回答: 1、with admin option with admin option的意思是被授予该权限的用户有权将某个权限(如create any table)授予其他用户或角色,取消是不级联的。 如授予A系统权限create session with ...
grant授权语句中的with [admin] option是将所授权限的操作权限(即再授权权限)同时赋予该用户。举例说明:grant all on admin to user1 with admin option,则user1用户不但拥有了admin的全部权限同时也可以将这些admin用户的权限付给其他用户;如果仅仅是grant all on admin to user1 那么user1用户只能...
例如:授予A系统登录的权限:create session with admin option;然后A又把该权限授予B,但管理员收回A的create session权限时,B依然拥有create session的权限。但管理员可以显式的收回B create session的权限,即可以直接revoke create session from B. 2、with grant option ...
with admin option是用在系统权限上的,with grant option是用在对象权限上的。 SQL语句: GRANT CREATE SESSION TO emi WITH ADMIN OPTION; GRANT CREATE SESSION TO role WITH ADMIN OPTION; GRANT role1 to role2 WITH ADMIN OPTION; GRANT select ON customers1 TO bob WITH GRANT OPTION; GRANT select ON ...
ADMIN_OPTION VARCHAR2(3) · 授权通过grant 语法:GRANT object_priv[(columns)][ON object] TO {user|role|public} [WITH GRANT OPTION] · 回收通过revoke 语法:REVOKE object_priv[(columns)][ON object] FROM {user[,user...]|role|public} [CASCADE CONSTRINTS] ...
grant 权限 to 人|组|共有 [with amdmin option 系统权限有传递性] 为user1授予create session,create table,create index系统权限。之后用user1为user2授予create table权限 grant create session,create table,create index to user1 with admin option; connect user1/user1 @ human_resource; grant create ...
, update on ceshi from choy;权限转移表示得到权限的用户,可以把权限继续分派给其它人系统权限转给其它人 with admin optiongrant resource to user with admin option;对象权限转给其它人 with grant optiongrant select on scott.emp to stu with grant option;...