AdmMono/src/db/migration/V20161007_1709__mantis0000.sql

10 lines
252 B
SQL

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;