我使用的是Oracle 11.2.0.2.0:
以用户u1:
create table t(a int);
grant select on t to u2;
用户u2:
create view v as select * from u1.t;
create trigger tr instead of update on v for each row begin null; end;
update v set a = null;
以u2执行更新语句的结果:
Expected: 0 rows updated.
Actual: ORA-01031: insufficient privileges
为什么u2会获得ORA-01031?它没有尝试更新t中的数据。 我的解决方法是什么?我不希望u2在t上有更新关键。
谢谢,Al
答案 0 :(得分:0)
http://psoug.org/definition/authid.htm
请注意,对于VIEW或TRIGGER中引用的调用者权限例程,这些对象的所有者始终被认为是调用者,而不是触发它的用户。
如果使用触发器,则表示将使用current_user authid调用该过程。更新触发器本身需要更新priv,因为它检查user1中表的更新。
对我来说,这是一个错误,因为最终用户2的模式中的视图触发器与user1的更新priv无关。