SSC-FDM-TD0011

Unicode BMP escape is not supported.

Description

Snowflake doesn't support Unicode BMP, so this message is shown when SnowConvert transforms Teradata Unicode Delimited Character Literal with Unicode BMP escape to snowflake.

Example code

Input Code:

IN -> Teradata_01.sql
SELECT U&'hola #+005132 mundo' UESCAPE '#';

Output Code:

OUT -> Teradata_01.sql
SELECT
--** SSC-FDM-TD0011 - UNICODE BMP IS NOT SUPPORTED IN SNOWFLAKE **
'hola \u+005132 mundo';

Recommendations

Last updated