Use the IDUC SNDMSG command to send information messages to an Accelerated Event Notification client.
IDUC SNDMSG destination, string_expression
create trigger notify_isqlconn
group default_triggers
priority 1
on signal connect
begin
if( %signal.process = 'isql' )
then
iduc sndmsg 'notif_isql', 'ISQL Connection from ' +
%signal.node + ' from user ' +
%signal.username + ' at ' +
to_char(%signal.at)
end if;
end;