fixed bug #9686 - Alterações referentes à GAP 59.1

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@73166 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago 2017-08-26 19:16:10 +00:00
parent bc7782231d
commit d159300cc9
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'Insert into CONSTANTE (CONSTANTE_ID,NOMBCONSTANTE,DESCCONSTANTE,INDTIPOCONSTANTE,VALORCONSTANTE,INDMANTENIMIENTOUSUARIO,ACTIVO,FECMODIF,USUARIO_ID) values (CONSTANTE_SEQ.NEXTVAL,''REMARCACAO_GERAR_NUMFOLIOSISTEMA'',''REMARCACAO_GERAR_NUMFOLIOSISTEMA'',''1'',''-1'',''1'',''1'',sysdate,''1'')';
exception when dup_val_on_index then null;
end;