Ingres Create Sequence

The Ingres Create Sequence Tool allows users to visually create sequences.

The Ingres Create Sequence tool contains the following options:

Sequence Name
Starts With
Increment By
Maximum Value
Minimum Value
Cache
Cycle

The following is an example of the SQL generated from the Ingres Create Sequence Tool.

CREATE SEQUENCE administrator.test_seq
START WITH 1
INCREMENT BY 1
MAXVALUE 1000
MINVALUE 0
NOCACHE
NOCYCLE