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:
CREATE TABLE TABLE01(
COLNAME VARCHAR(20) CHARACTER SET character_specification
);
Output Code:
CREATE TABLE TABLE01 (
COLNAME VARCHAR(20)
-- --** SSC-FDM-0018 - CHARACTER SET CLAUSE IS NOT SUPPORTED BY SNOWFLAKE. **
-- CHARACTER SET character_specification
);
Recommendations
If you need more support, you can email us at [email protected]
Last updated