ALL_SEQUENCES v11
The ALL_SEQUENCES
view provides information about all user-defined sequences on which the user has SELECT
, or UPDATE
privileges.
Name | Type | Description |
---|---|---|
sequence_owner | TEXT | User name of the sequence's owner. |
schema_name | TEXT | Name of the schema in which the sequence resides. |
sequence_name | TEXT | Name of the sequence. |
min_value | NUMERIC | The lowest value that the server will assign to the sequence. |
max_value | NUMERIC | The highest value that the server will assign to the sequence. |
increment_by | NUMERIC | The value added to the current sequence number to create the next sequent number. |
cycle_flag | CHARACTER VARYING | Specifies if the sequence should wrap when it reaches min_value or max_value . |
order_flag | CHARACTER VARYING | Will always return Y . |
cache_size | NUMERIC | The number of pre-allocated sequence numbers stored in memory. |
last_number | NUMERIC | The value of the last sequence number saved to disk. |