fixes bug #AL-2143

master
valdevir 2023-03-16 10:46:49 -03:00
parent 8a49e7992e
commit 791fc51c7b
1 changed files with 0 additions and 8 deletions

View File

@ -1,8 +0,0 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'INSERT INTO CONSTANTE (CONSTANTE_ID, NOMBCONSTANTE, DESCCONSTANTE, VALORCONSTANTE, INDTIPOCONSTANTE, INDMANTENIMIENTOUSUARIO, ACTIVO, FECMODIF, USUARIO_ID)
VALUES (CONSTANTE_SEQ.nextval, ''EMAIL_SUPORTE_SCO_RJCONSULTORES'', ''EMAIL_SUPORTE_SCO_RJCONSULTORES'', ''suportesco.rjconsultores@totvs.com.br'', ''1'', ''1'', ''1'', sysdate, ''1'')';
exception when dup_val_on_index then null;
end;