SSC-FDM-TD0011

Unicode BMP escape is not supported.

Important Notice: Migration of Documentation Website

Please be advised that our documentation website is currently undergoing a migration to a new platform. To ensure you have access to the most up-to-date information, we kindly request that you visit our new documentation website located at:

Official Snowflake Snowconvert Documentation

For any immediate assistance or if you encounter any issues, please contact our support team at [email protected].

Thank you for your understanding.

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

  • Check if a Unicode equivalent exists.

  • If you need more support, you can email us at [email protected]

Last updated