fixes bug#24679

dev: julio
qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@112894 d1611594-4594-4d17-8e1d-87c2c4800839
master
julio 2022-06-23 13:06:50 +00:00
parent 186ee27967
commit b9bdb70557
1 changed files with 10 additions and 4 deletions

View File

@ -1,8 +1,14 @@
declare declare
dup_val_on_index exception; dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001); except_02291 exception;
pragma exception_init (dup_val_on_index , -00001);
pragma exception_init (except_02291 , -02291);
begin begin
execute immediate 'insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values execute immediate 'insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
(FUNCION_SISTEMA_SEQ.NEXTVAL,1,''ADM > PASAJERO FRECUENTE > IMPORTAR CLIENTES POLICIAL'', ''COM.RJCONSULTORES.ADMINISTRACION.GUI.PASAJEROFRECUENTE.MENU.IMPORTARCLIENTESPOLICIAL'',1,SYSDATE,-1)'; (FUNCION_SISTEMA_SEQ.NEXTVAL,1,''ADM > PASAJERO FRECUENTE > IMPORTAR CLIENTES POLICIAL'', ''COM.RJCONSULTORES.ADMINISTRACION.GUI.PASAJEROFRECUENTE.MENU.IMPORTARCLIENTESPOLICIAL'',1,SYSDATE,-1)';
exception when dup_val_on_index then null; exception
end; when dup_val_on_index then null;
when except_02291 then null;
end;
/