Oracle Create Sequence

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

The Oracle Create Sequence tool contains the following options:

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

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

CREATE SEQUENCE TESTUSER.TEST_SEQUENCE
INCREMENT BY 1
START WITH 1
MAXVALUE 1000
NOMINVALUE
CYCLE
NOCACHE
ORDER

Oracle Create Sequence