Escriba un procedimiento almacenado como:
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
Debe verificar la sintaxis porque no puedo probar mi código en este momento.