MSCEWI4059

Column data type is not supported in Snowflake.

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

Severity

Medium

Description

This is EWI occurs when there are unsupported column data types.

Code Example

Input code

CREATE TABLE MYTABLE(
    COL1 MPDOUBLE NOT NULL
);

Output code:

CREATE TABLE MYTABLE(
    COL1 MPDOUBLE /*** MSC-ERROR - MSCEWI4059 - DATA TYPE MPDOUBLE IS NOT SUPPORTED ***/ NOT NULL
);

Recommendations

Last updated