Здарова, ребята! Помогите, пожалуйста, с триггером.
Насколько я понял, оракл ругается на переменные. Но почему - не знаю.
create or replace package dolgi_pkgP is
procedure closemonth;
end dolgi_pkgP;
create or replace package BODY dolgi_pkgP is
procedure closemonth
( m in potop.meseac%type,
g in potop.god%type) is
begin
select max(god) from potop into g;
select max(meseac) from potop a into m
where a.god = g;
insert into potop
(select adres_id, lgoty_id, tarif+1, total-fact_sum, 0, meseacgod.fun_meseac(m), meseacgod.fun_god(m,g), null, null, null
from potop
where meseac=m and god=g);
end closemonth;
end dolgi_pkgP;