MSCEWI3032
Parameter with the specified format is not supported.
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
Severity
Medium
Description
This error happens when a parameter in a function is not supported.
Example Code
Input Code:
SELECT TO_CHAR(DATE '1998-12-25', 'AM') FROM DUAL;
Output Code:
SELECT
TO_CHAR_FORMAT_STUB('TO_CHAR(DATE \'1998-12-25\', \'AM\')') /*** MSC-ERROR - MSCEWI3032 - PARAMETER WITH FORMAT AM NOT SUPPORTED ***/
FROM DUAL;
Recommendations
The function is converted to a user defined function(stub), so you can modify it to emulate the behavior of the parameter.
If you need more support, you can email us at [email protected]
Last updated