SSC-FDM-TS0015
Data type is not supported in Snowflake
Description
This warning is added when an SQL Server column has an unsupported type in Snowflake.
Code Example
Input Code:
CREATE TABLE table1
(
column1 type1
);
Output Code:
CREATE OR REPLACE TABLE table1
(
column1 VARIANT /*** SSC-FDM-TS0015 - DATA TYPE TYPE1 IS NOT SUPPORTED IN SNOWFLAKE ***/
)
COMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},"attributes":{"component":"transact"}}'
;
Recommendations
Check the Snowflake data types documentation to find an equivalent for the data type.
If you need more support, you can email us at snowconvert-support@snowflake.com
Last updated