SSC-FDM-OR0028

SYS_CONTEXT parameter is not supported.

This FDM is deprecated, please refer to SSC-EWI-OR0031 documentation.

Description

This error happens when a SYS_CONTEXT function parameter is not supported.

Example Code

Input Code:

SELECT SYS_CONTEXT ('USERENV', 'NLS_SORT') FROM DUAL;

Output Code:

SELECT
--** SSC-FDM-OR0028 - 'NLS_SORT' SYS_CONTEXT PARAMETER NOT SUPPORTED IN SNOWFLAKE **
SYS_CONTEXT ('USERENV', 'NLS_SORT') FROM DUAL;

Recommendations

  • The function is converted to a user defined function(stub), so you can modify it to emulate the behavior of the SYS_CONTEXT parameter.

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

Last updated