declare
ja_existe exception;
pragma exception_init (ja_existe , -00001);
begin
execute immediate 'update punto_venta set INDBLOQCANCIMPPOSTERIOR = 0 where INDBLOQCANCIMPPOSTERIOR is null';
exception when ja_existe then null;
end;