MSCEWI2014
Column converted from Clob 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 CLOB. Since CLOB is not supported in SnowConvert, the type is changed to VARCHAR.
Code Example
Input Code:
CREATE TABLE TableExample
(
ColumnExample CLOB
)
Output Code:
CREATE TABLE PUBLIC.TableExample
(
ColumnExample VARCHAR /*** MSC-WARNING - MSCEWI2014 - COLUMN CONVERTED FROM CLOB DATA TYPE ***/
);
Recommendations
No additional user actions are required.
If you need more support, you can email us at [email protected]
Last updated