Issue #9758: ESPEC P337 - MAPA DE VIAGEM

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@74910 d1611594-4594-4d17-8e1d-87c2c4800839
master
luis 2017-10-16 21:02:30 +00:00
parent c891973d20
commit 671613d116
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'Insert into FUNCION_SISTEMA (FUNCIONSISTEMA_ID, SISTEMA_ID, NOMBFUNCION, DESCRUTA, ACTIVO, FECMODIF, USUARIO_ID) values (FUNCION_SISTEMA_SEQ.nextval,1, ''BLOQUEO LOCALIDADE PARA VENDA'', ''COM.RJCONSULTORES.VENTABOLETOS.MAPAVIAGEM.BLOQUEOVENDA'', 1, sysdate, 1)';
exception when dup_val_on_index then null;
end;