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:
CREATE TABLE TableExample
(
ColumnExample BLOB
)
Output Code:
CREATE OR REPLACE 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
No additional user actions are required.
If you need more support, you can email us at snowconvert-support@snowflake.com
Last updated