SSC-FDM-TD0001

Column converted from Blob data type.

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:

IN -> Teradata_01.sql
CREATE TABLE TableExample
(
ColumnExample BLOB
)

Output Code:

OUT -> Teradata_01.sql
CREATE TABLE TableExample
(
ColumnExample BINARY /*** SSC-FDM-TD0001 - COLUMN CONVERTED FROM BLOB DATA TYPE ***/
)
COMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},{"attributes":{"component":"teradata"}}'
;

Recommendations

Last updated