Sequence
Manages the creation and configuration of sequences in Snowflake, which are objects that generate numeric values according to a specified sequence.
Examples
Python
YAML
Fields
name
(string, required) - The name of the sequence.owner
(string or Role) - The owner role of the sequence. Defaults to "SYSADMIN".start
(int) - The starting value of the sequence.increment
(int) - The value by which the sequence is incremented.comment
(string) - A comment for the sequence.
Last updated