Column name
|
Data type
|
Description
|
| SEQUENCE _CATALOG |
VARCHAR(128) |
Catalog name for the sequence |
| SEQUENCE _SCHEMA |
VARCHAR(128) |
Schema name for the sequence. |
| SEQUENCE _NAME |
VARCHAR(128) |
Name of the sequence. |
| IS_UNIQUE |
VARCHAR(3) |
One of: "YES" = the sequence will yield unique values "NO" = the sequence may repeat itself. |
| INITIAL_VALUE |
INTEGER |
The initial value for the sequence. |
| INCREMENT |
INTEGER |
The increment for the sequence. |
| MAXIMUM_ VALUE |
INTEGER |
The maximum value for the sequence. |