oracle中触发器明明写的是after,为什么在插入到表中的是没插入前的数据
意思是表发生插入或更新操作时执行存储过程可是up_org_station更新操作后得到的数据总是之前的,不如从1改为2,存储过程得到的数据是1,从2改为3,得到的就是2,...
意思是表发生插入或更新操作时执行存储过程
可是up_org_station 更新操作后得到的数据总是之前的,不如从1改为2,存储过程得到的数据是1,从2改为3,得到的就是2,这是怎么回事呢?
下面是存储过程和触发器
触发器:
Create Or Replace Trigger AfterInsertTBpcf
after insert or update on tb_partycrossreference for each row
declare
-- local variables here
begin
userAssociation_insert;
commit;
end AfterInsertTBpcf;
存储过程:
create or replace procedure userAssociation_insert is PRAGMA AUTONOMOUS_TRANSACTION;
v_sqlcode error_record.ERROR_CODE%type;
v_msg error_record.error_msg%type;
begin
update user_association u set ( u.party_id,u.input_stamp,u.update_stamp )=(select t.party_id,t.create_time,edit_time from tb_partycrossreference t where u.source_party_id=t.source_party_id);
commit;
exception
when others then
/*记录错误信息表*/
v_sqlcode :=sqlcode;
v_msg :=sqlerrm;
insert into error_record(error_code,error_msg,error_date,error_program,table_name) values(v_sqlcode,v_msg,sysdate,'userAssociation_insert','user_association');
end userAssociation_insert; 展开
可是up_org_station 更新操作后得到的数据总是之前的,不如从1改为2,存储过程得到的数据是1,从2改为3,得到的就是2,这是怎么回事呢?
下面是存储过程和触发器
触发器:
Create Or Replace Trigger AfterInsertTBpcf
after insert or update on tb_partycrossreference for each row
declare
-- local variables here
begin
userAssociation_insert;
commit;
end AfterInsertTBpcf;
存储过程:
create or replace procedure userAssociation_insert is PRAGMA AUTONOMOUS_TRANSACTION;
v_sqlcode error_record.ERROR_CODE%type;
v_msg error_record.error_msg%type;
begin
update user_association u set ( u.party_id,u.input_stamp,u.update_stamp )=(select t.party_id,t.create_time,edit_time from tb_partycrossreference t where u.source_party_id=t.source_party_id);
commit;
exception
when others then
/*记录错误信息表*/
v_sqlcode :=sqlcode;
v_msg :=sqlerrm;
insert into error_record(error_code,error_msg,error_date,error_program,table_name) values(v_sqlcode,v_msg,sysdate,'userAssociation_insert','user_association');
end userAssociation_insert; 展开
3个回答
展开全部
你触发器中写的是 after insert or update on tb_partycrossreference,针对的是tb_partycrossreference表,但是你在存储过程中update的是user_association!!!所以根本就没有触发触发器!
追问
就是这样的,我目的是:当tb_partycrossreference数据被更新时,就触发此触发器,执行存储过程userAssociation_insert 把tb_partycrossreference表的数据更新进user_association
表。,
展开全部
自治事务取不到没提交的数据吧,用new传递下
更多追问追答
追问
用new?不是太明白是什么意思,,还请说的详细点,,谢谢啦
追答
Create Or Replace Trigger AfterInsertTBpcf after insert or update on tb_partycrossreference for each row
declare
v_aaa tb_partycrossreference%rowtype;
begin
v_aaa.party_id:=:new.party_id;
v_aaa.create_time:=:new.create_time;
v_aaa.edit_time :=:new.edit_time ;
v_aaa.source_party_id :=:new.source_party_id ;
userAssociation_insert(v_aaa);
end AfterInsertTBpcf;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这个看起来像是考题啊
因为自治事务是与主事务相分离的,所以它不能检测到被修改过的行的当前状态。
因为自治事务是与主事务相分离的,所以它不能检测到被修改过的行的当前状态。
追问
我这不是考题,是实际项目,,请问有没有什么好的解决方法啊,实在没辙 啊,不知道问题出在哪里?求指点啊,,,,,,,,,,忘了说那个触发器中的commit;不要了,你们就当没有就行。
追答
别用自治事物做这种事情啊。。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询