MSC-RS0013

DistStyle option is replaced by 'CLUSTER BY' on Snowflake using DISTKEY option.

This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.

Severity

Low

Description

Redshift's documentation for column table attributes includes an optional clause specifying the data distribution style for the whole table. This EWI only applies for DISTSTYLE KEY

Code Examples

CREATE TABLE TABLE1 
(
 COL1 INT,
 COL2 VARCHAR(15)
) 
DISTSTYLE KEY
DISTKEY (COL1);

Recommendations

Last updated