Skip to content

Commit a16217f

Browse files
susan-pgedgemason-sharp
authored andcommitted
Fix SQL command for converting sequences to Snowflake
Updated the SQL command syntax for converting sequences to reflect the correct function name.
1 parent 6379065 commit a16217f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/converting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ You cannot directly create a snowflake sequence; you must first create a sequenc
44

55
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:
66

7-
`SELECT snowflake.convert_sequence_name('sequence_name');`
7+
`SELECT snowflake.convert_sequence_to_snowflake('sequence_name');`
88

99
**Where**
1010

0 commit comments

Comments
 (0)