The event store is used by the adapter to track events. The following table notes which values are stored for each event.
Column name | Type (length) | Description |
---|---|---|
EVNTID | Varchar (255) | Used to Track events during inbound processing. Each event requires an event ID for tracking purposes. This must be a unique identifier in the table. |
EVNTSTAT | Integer | The status of the event. The adapter uses the status
to determine whether an event is new or in process. Event status values: NEW(0) The event is ready to be processed. PROCESSED (1) The adapter successfully processed and delivered the event. FAILED (-1) The adapter was unable to process this event due to one or more problems. |
XID | Varchar(255) | Used by the adapter for assured event delivery and recovery. |
EVNTDATA | Varchar(255) | Used to track failed events so that they will not be processed again during recoveries. Failed events are marked "ARCHIVED." |
(c) Copyright IBM Corporation 2005, 2006.
This information center is powered by Eclipse technology (http://www.eclipse.org)