错误(2,14): PL/SQL: ORA-00942: 表或视图不存在
以下是我写的触发器,现已确定所用到的表和字段都存在而且正确
但是编译错误,请高手给指点一下
SQL code?1 create or replace trigger tr_up_zyxt_enterprise_id after inserton t_enterprise_info for each row beginupdate BCPBS.t_enterprise_info set zyxt_enterprise_id=:new.enterprise_id where organization_no=:new.organize_no; end;
错误位置在:new.enterprise_id,系统提示:错误(2,14): PL/SQL: ORA-00942: 表或视图不存在
grant all privileges to 你的用户
明白了,不同的用户的同名表……
那就是授权的问题了,跑到BCPBS下,
grant update on t_enterprise_info to 【现在的用户】;