MSCEWI1001

Unrecognized token on the line of the source code.

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

Severity

Critical

Description

This issue occurs when there is an error while parsing the source code that is being converted. It means there is a source code syntax error or a specific statement of the code is not being recognized yet.

Example Code

Input Code:

SELECT ABS(10) FROM FROM TABLE1;

Output Code:

SELECT
ABS(10)
-- ** MSC-ERROR - MSCEWI1001 - UNRECOGNIZED TOKEN ON LINE 1 OF THE SOURCE CODE. **
--        FROM FROM TABLE1
                        ;

Recommendations

Last updated