From 5d599d04abe802c198e661e7d6058ad904175d7b Mon Sep 17 00:00:00 2001 From: thiago Date: Wed, 26 Jul 2017 21:29:55 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#9271=20-=20Corre=C3=A7=C3=A3o=20?= =?UTF-8?q?de=20query.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71932 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170725_1721__mantis9271.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/migration/V20170725_1721__mantis9271.sql b/src/db/migration/V20170725_1721__mantis9271.sql index 158324cbb..ae3307565 100644 --- a/src/db/migration/V20170725_1721__mantis9271.sql +++ b/src/db/migration/V20170725_1721__mantis9271.sql @@ -2,7 +2,7 @@ declare dup_val_on_index exception; pragma exception_init (dup_val_on_index , -00001); begin - execute immediate 'Insert into MOTIVO_CANCELACION (MOTIVOCANCELACION_ID,DESCMOTIVO,TIPOMOTIVO,EQUIVALENCIAELEKTRA_ID,EQUIVALENCIA_ID,ACTIVO,FECMODIF,USUARIO_ID,TXTRELATORIO) values (''38'',''SOLICITACAO ESTORNO'',''B'',null,null,''1'',SYSDATE,''1'',''SOLICITACAO ESTORNO'')'; + execute immediate 'Insert into MOTIVO_REIMPRESION (MOTIVOREIMPRESION_ID,DESCMOTIVO,ACTIVO,FECMODIF,USUARIO_ID) values (''38'',''SOLICITACAO ESTORNO'',''1'',SYSDATE,''1'')'; exception when dup_val_on_index then null; end;