Oracle授予特权

Oracle授予特权,oracle,grant,Oracle,Grant,如何向用户授予特权,以便他们可以将特权传递给Oracle中的其他用户 将所有的客户授权给管理员 这是命令吗 谢谢添加带有授权选项的: Grant All On Customers to Admin with grant option; 使用授权选项添加: Grant All On Customers to Admin with grant option; 您可能需要with grant option子句 grant all on customer to some_user wi

如何向用户授予特权,以便他们可以将特权传递给Oracle中的其他用户

将所有的客户授权给管理员

这是命令吗


谢谢

添加带有授权选项的

Grant All On Customers to Admin with grant option;

使用授权选项添加

Grant All On Customers to Admin with grant option;

您可能需要
with grant option
子句

grant all
   on customer
   to some_user
 with grant option;

如果您授予的是系统权限而不是对象权限,请使用
with admin option
子句,而不是
with grant option
您可能需要
with grant option
子句

grant all
   on customer
   to some_user
 with grant option;
如果您授予的是系统权限而不是对象权限,请使用
with admin option
子句,而不是
with grant option

您可以找到它。您可以找到它。