ahmet_sinav
Programmer
hi all;
how can i insert or update in the after insert or update trigger fro the same table. when i try this the trigger is firing again fire in trigger.
for example :
trigger for tbl_x after insert or update for each row;
create or replace function fooo();
begin
update tbl_x set fld1='1';
insert into tbl_x set fld2='3';
return null;
end;
Note : The synntax may be wrong. i only want that how can i make this?
how can i insert or update in the after insert or update trigger fro the same table. when i try this the trigger is firing again fire in trigger.
for example :
trigger for tbl_x after insert or update for each row;
create or replace function fooo();
begin
update tbl_x set fld1='1';
insert into tbl_x set fld2='3';
return null;
end;
Note : The synntax may be wrong. i only want that how can i make this?