MSCEWI1021
Not supported.
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
Severity
Medium
Description
This error appears when a specific node or statement from the source code is not supported.
Example Code
Input Code:
WITH my_av ANALYTIC VIEW AS
(USING sales_av HIERARCHIES(time_hier) ADD MEASURES(lag_sales AS (LAG(sales) OVER (HIERARCHY time_hier OFFSET 1 ))))
SELECT aValue from my_av;
Output Code:
-- ** MSC-ERROR - MSCEWI1021 - SubavFactoring NOT SUPPORTED **
--WITH my_av ANALYTIC VIEW AS
--(USING sales_av HIERARCHIES(time_hier) ADD MEASURES(lag_sales AS (/*** MSC-ERROR - MSCEWI1037 - TRANSLATION FOR LEAD LAG EXPRESSION IS PLANNED TO BE DELIVERED IN THE FUTURE ***/
--LAG(sales) OVER (HIERARCHY time_hier OFFSET 1 ))))
SELECT aValue from my_av;
Recommendations
If this error happens is because there is no Snowflake equivalent for the node that is being converted.
If you need more support, you can email us at [email protected]
Last updated