Start of change

Db2-supplied sequences

You or certain tools might need to reference specific Db2-supplied sequences to ensure consistent, unique values in some catalog table columns.

DSNSEQ_EVENTID

FL 501

A sequence that is intended to be used to generate a value for the EVENTID column when a row is inserted into the SYSIBM.SYSUTILITIES catalog table.
This sequence has the following characteristics:
  • The schema is SYSIBM
  • The type is BIGINT
  • The START WITH value is 1000
  • Use of this sequence is granted to PUBLIC
Sequence name Attributes Use Authorization required New, Changed, or Dropped
SYSIBM.DSNSEQ_EVENTID
BIGINT
START WITH 1000
INCREMENT BY 1
MINVALUE 1000
NO MAXVALUE
CYCLE
CACHE 100
NO ORDER
Generates the next value for the SYSIBM.SYSUTILITIES EVENTID column. Use privilege is granted to PUBLIC. No other authorization is required. New
End of change