MSCEWI4046

System table is not supported in Snowflake.

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

Severity

Medium

Description

Code Example

Input Code:

SELECT *
FROM 
    sys.all_sql_modules
WHERE 
    [STATE] = 0; -- state must be ONLINE

Output Code:

SELECT *
FROM
-- ** MSC-ERROR - MSCEWI4046 - SYSTEM TABLE sys.all_sql_modules IS NOT SUPPORTED IN SNOWFLAKE **
--     sys.all_sql_modules
WHERE STATE = 0; -- state must be ONLINE

Recommendations

Last updated