fixed bug #9271 - Correção de query.

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71932 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago 2017-07-26 21:29:55 +00:00
parent bef551f867
commit 5d599d04ab
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ declare
dup_val_on_index exception; dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001); pragma exception_init (dup_val_on_index , -00001);
begin 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; exception when dup_val_on_index then null;
end; end;