满意答案
bestbogus
2013.12.03
采纳率:53% 等级:12
已帮助:4714人
oracle 中可以通过INSTEAD OF INSERT 的触发器来阻止插入,当INSTEAD OF 触发器只能创建到view上所以要实现你所需要的功能需要对你的对象做一下改动就是把temp 表改为一个view ,参考过程如下:
rename table temp to temp_old;
create view temp as select * from temp_old;
CREATE OR REPLACE TRIGGER “USER1″.”INS_COPY”
INSTEAD OF INSERT ON user1.temp
begin
if(:new.b1=’220212′) then
insert into user1.temp_copy(a1,b1,c1)
values (:new.a1,:new.b1,:new.c1);
else
insert into user1.temp_old(a1,b1,c1)
values (:new.a1,:new.b1,:new.c1);
end if;
end;
00分享举报