MSCEWI2013

Column converted from Blob data type.

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

Severity

Low

Description

This message is shown when SnowConvert finds a data type BLOB. Since BLOB is not supported in Snowflake, the type is changed to Binary.

Code Example

Input Code:

CREATE TABLE TableExample
(
ColumnExample BLOB
)

Output Code:

CREATE TABLE PUBLIC.TableExample
(
ColumnExample BINARY /*** MSC-WARNING - MSCEWI2013 - COLUMN CONVERTED FROM BLOB DATA TYPE ***/
);

Recommendations

Last updated