DBA_SEQUENCES
- dba_sequences视图提供有关所有用户定义序列的信息。
列名 | 类型 | 描述 |
sequence_owner | text | 序列的所有者 |
schema_name | text | 序列所在模式的名称 |
sequence_name | text | 序列名称 |
min_value | numeric | 序列的最小值 |
max_value | numeric | 序列的最大值 |
increment_by | numeric | 序列的递增值 |
cycle_flag | text | 序列在增长到上限后是否环绕使用 |
order_flag | text | 序列是否按顺序产生 |
cache_size | numeric | 一次缓存序列的数量 |
last_number | numeric | 最后被写入磁盘的序列号 |