MSCEWI2064

Unicode BMP escape is not supported

Severity

Low

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:

SELECT U&'hola #+005132 mundo' UESCAPE '#';

Output Code:

SELECT
--** MSC-ERROR - MSCEWI2064 - UNICODE BMP IS NOT CURRENTLY SUPPORTED **
'hola \u+005132 mundo';

Recommendations

  • Check if exists a Unicode equivalent.

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

Last updated