Updated on 2024-06-03 GMT+08:00

DB_SEQUENCES

DB_SEQUENCES displays all sequences accessible to the current user. This view exists in the PG_CATALOG and SYS schemas.

Table 1 DB_SEQUENCES columns

Name

Type

Description

sequence_owner

name

Owner of a sequence.

sequence_name

name

Name of a sequence.

min_value

int16

Minimum value of a sequence.

max_value

int16

Maximum value of a sequence.

increment_by

int16

Value by which a sequence is incremented.

cycle_flag

character(1)

Specifies whether a sequence is a cyclic sequence. Value range:
  • Y: It is a cycle sequence.
  • N: It is not a cycle sequence.

order_flag

character varying(1)

Specifies whether a sequence occurs in a request sequence. Not supported. Its value is NULL.

cache_size

int16

Size of the sequence disk cache.

last_number

int16

Value of the previous sequence.

scale_flag

character varying(1)

Specifies whether a sequence is a scalable sequence. Not supported. Its value is NULL.

extend_flag

character varying(1)

Specifies whether the value generated by a scalable sequence exceeds the maximum or minimum value of the sequence. Not supported. Its value is NULL.

sharded_flag

character varying(1)

Specifies whether a sequence is a shard sequence. Not supported. Its value is NULL.

session_flag

character varying(1)

Specifies whether a sequence is a private session. Not supported. Its value is NULL.

keep_value

character varying(1)

Specifies whether to retain the sequence value during replay after a failure. Not supported. Its value is NULL.