MSCEWI3014

NLSSORT not supported.

This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.

Severity

Medium

Description

NLSSORT function is not currently supported in the body of a select.

Example Code

Input Code:

SELECT NLSSORT(name, 'NLS_SORT = ENGLISH') FROM products;

Output Code:

SELECT
/*** MSC-ERROR - MSCEWI3014 - FUNCTION NLSSORT IS NOT SUPPORTED ***/
NLSSORT_STUB('NLSSORT(name, \'NLS_SORT = ENGLISH\')')
FROM PUBLIC.products;

Recommendations

  • NLSSORT is converted to a user-defined function (UDF/Stub), so you can modify it to emulate the functionality.

  • If you need more support, you can email us at snowconvert-support@snowflake.com

Last updated