Comment on page
MSCEWI1040
Statement Not Supported.
Low
This warning is added when there is a statement that is not supported in SnowFlake.
In the following example, the
go
command from SQL Server is used. This is actually not a Transact-SQL statement; it is a command recognized by the sqlcmd and osql utilities and SQL Server Management Studio Code editor. Either way, it provides functionality not available in SnowFlake, for more info about thego
command check here. CREATE OR ALTER VIEW DateTableView1
AS
SELECT * FROM DateTable;
GO
CREATE
OR REPLACE VIEW PUBLIC.DateTableView1
AS
SELECT * FROM PUBLIC.DateTable;
-- ** MSC-WARNING - MSCEWI1040 - THE STATEMENT IS NOT SUPPORTED IN SNOWFLAKE **
--GO
- Review the original functionality of the statement and check if it is actually needed for your specific needs in Snowflake.