SSC-EWI-OR0014

NLSSORT 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.

Some parts in the output code are omitted for clarity reasons.

Severity

Medium

Description

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

Example Code

Input Code:

IN -> Oracle_01.sql
SELECT NLSSORT(name, 'NLS_SORT = ENGLISH') FROM products;

Output Code:

OUT -> Oracle_01.sql
// SnowConvert Helpers Code section is omitted.
SELECT
!!!RESOLVE EWI!!! /*** SSC-EWI-OR0014 - FUNCTION NLSSORT IS NOT SUPPORTED ***/!!!
 NLSSORT(name, 'NLS_SORT = ENGLISH') FROM
 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 [email protected]

Last updated