From 6b756921d15eeaa63a1de962f109deb89f2a8bb2 Mon Sep 17 00:00:00 2001 From: susan-pgedge <130390403+susan-pgedge@users.noreply.github.com> Date: Tue, 2 Dec 2025 07:11:04 -0500 Subject: [PATCH] Fix SQL command for converting sequences to Snowflake Updated the SQL command syntax for converting sequences to reflect the correct function name. --- docs/converting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/converting.md b/docs/converting.md index e8bf6a5..127709c 100644 --- a/docs/converting.md +++ b/docs/converting.md @@ -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**