fixes bug#18444

fixes bug#18434
dev:thiago
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@100373 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2020-02-27 21:41:26 +00:00
parent c680321534
commit 4eb56b280f
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'update custom set sistema = ''2'' where chave = ''clienteProducto'' and tipo = ''4''';
execute immediate 'update custom set sistema = ''1'' where chave = ''clienteProducto'' and tipo = ''1''';
exception when object_exists then null;
end;