IBM Tivoli Netcool/OMNIbus, Version 7.4

Sending IDUC notifications to IDUC clients (IDUC FLUSH command)

Use the IDUC FLUSH command to send IDUC notifications to IDUC clients.

Syntax

IDUC FLUSH destination
In this command:
  • destination = spid
  • spid = integer_expression (The literal client connection ID)

Example

create or replace trigger exmple_trigger
group default_triggers
enabled true 
priority 2
on signal iduc_data_fetch
begin
	for each row conn in iduc_system.iduc_stats 
	begin
		IDUC FLUSH conn.connectionid;	
	end;
end;
go