SSC-FDM-0018

CHARACTER SET clause is not supported by Snowflake.

Description

The column option CHARACTER SET determines the allowed set of characters that can be stored in the column, this clause is not supported by Snowflake.

Code Example

Input Code:

IN -> Greenplum_01.sql
CREATE TABLE TABLE01(
    COLNAME VARCHAR(20) CHARACTER SET character_specification
);

Output Code:

OUT -> Greenplum_01.sql
CREATE TABLE TABLE01 (
    COLNAME VARCHAR(20)
--                        --** SSC-FDM-0018 - CHARACTER SET CLAUSE IS NOT SUPPORTED BY SNOWFLAKE. **
--                        CHARACTER SET character_specification
);

Recommendations

Last updated