Feature
This view displays all sequences in the current tenant.
Fields
| Field | Type | Nullable | Description |
|---|---|---|---|
| SEQUENCE_OWNER | varchar(128) | NO | The name of the database in which the sequence resides. |
| SEQUENCE_NAME | varchar(128) | NO | The name of the sequence. |
| MIN_VALUE | decimal(28,0) | NO | The minimum value. |
| MAX_VALUE | decimal(28,0) | NO | The maximum value. |
| INCREMENT_BY | decimal(28,0) | NO | The step size. |
| CYCLE_FLAG | varchar(1) | NO | Indicates whether the sequence wraps when it reaches the minimum or maximum value. |
| ORDER_FLAG | varchar(1) | NO | Indicates whether the sequence is ordered. |
| CACHE_SIZE | decimal(28,0) | NO | The cache size. |
| LAST_NUMBER | decimal(38,0) | NO | The previous value. |