declare ja_existe exception; pragma exception_init (ja_existe , -00001); begin execute immediate 'INSERT INTO USUARIO (USUARIO_ID, NOMBUSUARIO, CVEUSUARIO, activo) VALUES (-1, ''TODOS'', ''TODOS'', 1)'; exception when ja_existe then null; end;