MSCEWI1001
Unrecognized token on the line of the source code.
Critical
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.
SELECT ABS(10) FROM FROM TABLE1;
SELECT
ABS(10)
-- ** MSC-ERROR - MSCEWI1001 - UNRECOGNIZED TOKEN ON LINE 1 OF THE SOURCE CODE. **
-- FROM FROM TABLE1
;
- Check if the source code has the correct syntax.
Last modified 1mo ago