ALTER SEQUENCE¶
Modifies the properties for an existing sequence.
- See also:
CREATE SEQUENCE , DROP SEQUENCE , SHOW SEQUENCES , DESCRIBE SEQUENCE
Syntax¶
ALTER SEQUENCE [ IF EXISTS ] <name> RENAME TO <new_name>
ALTER SEQUENCE [ IF EXISTS ] <name> [ SET ] [ INCREMENT [ BY ] [ = ] <sequence_interval> ]
ALTER SEQUENCE [ IF EXISTS ] <name> SET COMMENT = '<string_literal>'
ALTER SEQUENCE [ IF EXISTS ] <name> UNSET COMMENT
Parameters¶
name
Specifies the identifier for the sequence to alter. If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive.
For more details about identifiers, see Identifier Requirements.
RENAME TO new_name
Specifies the new identifier for the sequence; must be unique for the schema.
For more details about identifiers, see Identifier Requirements.
You can move the object to a different database and/or schema while optionally renaming the object. To do so, specify a qualified
new_name
value that includes the new database and/or schema name in the formdb_name.schema_name.object_name
orschema_name.object_name
, respectively.Note
The destination database and/or schema must already exist. In addition, an object with the same name cannot already exist in the new location; otherwise, the statement returns an error.
Moving an object to a managed access schema is prohibited unless the object owner (i.e. the role that has the OWNERSHIP privilege on the object) also owns the target schema.
When an object is renamed, other objects that reference it must be updated with the new name.
SET...
[ INCREMENT [ BY ] sequence_interval ]
Specifies the step interval of the sequence:
For positive sequence interval
n
, the nextn-1
values are reserved by each sequence call.For negative sequence interval
-n
, the nextn-1
lower values are reserved by each sequence call.Supported values are any non-zero value that can be represented by a 64-bit two’s complement integer.
COMMENT = 'string_literal'
Adds a comment or overwrites an existing comment for the sequence.
UNSET ...
Specifies the properties to unset for the sequence, which resets them to the defaults.
Currently, the only property you can unset is
COMMENT
, which removes the comment, if one exists, for the sequence.
Usage Notes¶
The first/initial value for a sequence cannot be changed after the sequence is created.
Regarding metadata:
Attention
Customers should ensure that no personal data (other than for a User object), sensitive data, export-controlled data, or other regulated data is entered as metadata when using the Snowflake service. For more information, see Metadata Fields in Snowflake.