1

通过使用

select distinct grantor, table_schema from all_tab_privs where granter = '';

我发现当前用户可能会授予另一个用户访问权限,这是错误的。那么我可以简单地删除这些角色from all_tab_privs吗?

当我跑步时

delete from all_tab_privs where grantor = 'username';

我明白了

SQL Error: ORA-01031: insufficient privileges
01031. 00000 -  "insufficient privileges"
*Cause:    An attempt was made to change the current username or password
       without the appropriate privilege.

那么我是否需要为当前用户添加一些角色才能完成删除?

4

1 回答 1

5

您不能(也不应该)从任何数据字典表中删除数据。

如果要撤消权限,则需要使用该REVOKE命令。就像是

REVOKE SELECT ON scott.emp FROM bob

如果您想撤销用户 bob 从架构中的emp表中选择数据的能力。scott

于 2013-06-05T21:09:27.820 回答