MSCEWI3066

Add a stack of errors is not supported, the boolean argument was removed.

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

Severity

Low

Description

This warning is displayed when the third optional argument of RAISE_APLICATION_ERROR was removed during the migration. This functionality is not supported by Snowflake.

Example Code

Input Code:

RAISE_APPLICATION_ERROR(-20000, SQLERRM, TRUE);

Output Code:

//** MSC-WARNING - MSCEWI3064 - ADD TO STACK OF ERRORS IS NOT SUPPORTED, BOOLEAN ARGUMENT TRUE WAS REMOVED. **
RAISE(-20000,SQLERRM);

Recommendations

Last updated