次のようなストアド プロシージャを記述します。
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
現在コードをテストできないため、構文を確認する必要があります。