AdmMono/src/db/migration/V20170217_1453__8638.sql

8 lines
283 B
SQL

declare
ja_existe exception;
pragma exception_init (ja_existe , -00001);
begin
execute immediate 'update autorizacion set NOMBAUTORIZACION = ''AUT_AUMENTA_DISPONIBILIDAD'' where NOMBAUTORIZACION = ''AUT_AUMENTA_DISPONIB''';
exception when ja_existe then null;
end;