[]
oracle mutating trigger hatası
şimdi bi tane tablom var bu tabloda iki tane kolon için daha öncevar olan değerler girildğinde hata versin istiyorum.
insertte sorun olmuyor ama update yaparken mutating hatası alıyorum. nasıl çözebilirim.
create or replace trigger trg_country_schema_biur
before insert or update on country_schema
for each row
declare
v_count number;
begin
if inserting or updating then
select count(*)
into v_count
from country_schemat
where t.first_country = :new.first_country
and t.second_country = :new.second_country ;
end if;
if v_count > 0 then
raise_application_error(-20988
,' Your definition already exists!');
end if;
end trg_country_schema_biur;
insertte sorun olmuyor ama update yaparken mutating hatası alıyorum. nasıl çözebilirim.
create or replace trigger trg_country_schema_biur
before insert or update on country_schema
for each row
declare
v_count number;
begin
if inserting or updating then
select count(*)
into v_count
from country_schemat
where t.first_country = :new.first_country
and t.second_country = :new.second_country ;
end if;
if v_count > 0 then
raise_application_error(-20988
,' Your definition already exists!');
end if;
end trg_country_schema_biur;
o kolonlara unique index koysan?
- €xpolerer (28.12.12 13:37:43)
1