You can switch a constraint to enforced or not enforced state...
for instance:
update command options using c off;
create table ttt
(id integer
constraint chk_null CHECK(id is not null)
);
commit;
alter table ttt alter CHECK chk_null not enforced;
insert into ttt values(null);
<....>
update ttt set id = 1;
alter table ttt alter CHECK chk_null enforced;
commit;