SSC-FDM-OR0027
DEFAULT ON CONVERSION ERROR is not supported.
Description
Default on conversion error not supported in Snowflake
Example Code
Input Code:
SELECT TO_NUMBER('2,00' DEFAULT 0 ON CONVERSION ERROR) "Value" FROM DUAL;
Output Code:
SELECT
--** SSC-FDM-OR0027 - DEFAULT ON CONVERSION ERROR NOT SUPPORTED IN SNOWFLAKE IN SNOWFLAKE **
TO_NUMBER('2,00') "Value" FROM DUAL;
Recommendations
You might create UDF to emulate the behavior of
DEFAULT
valueON CONVERSION ERROR
.If you need more support, you can email us at snowconvert-support@snowflake.com
Last updated