Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/converting.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ You cannot directly create a snowflake sequence; you must first create a sequenc

You can use the `snowflake.convert_sequence_to_snowflake()` function to convert individual sequences to snowflake sequences. Note that this converts the sequence definition; existing values in a sequence column will not change. The command syntax in SQL is:

`SELECT snowflake.convert_sequence_name('sequence_name');`
`SELECT snowflake.convert_sequence_to_snowflake('sequence_name');`

**Where**

Expand Down
Loading