MSCEWI4041

XML data type methods are not supported in Snowflake.

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

Severity

Medium

Description

This EWI is added for the following XML data type methods that are not supported in Snowflake SQL:

  • Value

  • Query

  • Exist

  • Modify

  • Nodes

Code Example

Input Code:

 SELECT CatalogDescription.query('SomeXMLString') as Result
 FROM Production.ProductModel

Output Code:

SELECT
-- ** MSC-ERROR - MSCEWI4041 - XML TYPE METHOD query IS NOT SUPPORTED IN SNOWFLAKE**
--       CatalogDescription.query('SomeXMLString')
as Result
FROM Production.ProductModel;

Recommendations

Last updated