Table Bonus ( bonuscode primary key, bonusname )
Table Condbonus ( noco primary key & foriegn key (Conducteur),bonuscode foreign key (bonus), noli primary key , date_voy primary key )
insert Requets
declare
cursor embcur
is
select cond.noco,cond.bonuscode,cond.noli,cond.date_voy
from conducteur2 cond,conducteur c
where (cond.noco=c.noco and c.embauche> to_date('22-02-1970','dd-mm-yyyy') );
begin
for emb in embcur
loop
exit when embcur%notfound;
insert into condbonus values( emb.noco,emb.bonuscode,emb.noli,emb.date_voy);
end loop;
end;
invoke the trigger :
CREATE trigger Insert_Condbonus
before insert on condbonus
for each row
begin
insert into bonus(bonuscode) values(:new.bonuscode);
end;
the problem occurs during the execution of the insert requets and gives error ORA-06512 and ORA-04088
how to solve the problem