Napište uloženou proceduru jako:
create procedure INSERT_OR_UPDATE as
begin
if exists ( select * from Numerations where <your condition> )
begin
update Numerations set < ... > where < ... >
end
else
begin
insert into Numerations values <...>
end
end
Musíte zkontrolovat syntaxi, protože nyní nemohu svůj kód otestovat.