Distribution Clause
Description
Specifies the database partitioning or the way the data is distributed across multiple database partitions
Click here to navigate to the IBM DB2 docs page for this syntax.
Distribution Clause is not applicable in Snowflake.
Grammar Syntax

Sample Source Patterns
IBM DB2
CREATE TABLE TestTable
(
COL1 INT
) DISTRIBUTE BY REPLICATION;
Snowflake
CREATE TABLE PUBLIC.TestTable
(
COL1 INT
)
-- ** MSC-WARNING - MSCEWI1002 - REMOVED NEXT STATEMENT, NOT APPLICABLE IN SNOWFLAKE. **
-- DISTRIBUTE BY REPLICATION
;
Related EWIs
MSCEWI1002: REMOVED STATEMENT, NOT APPLICABLE IN SNOWFLAKE.
Last updated
Was this helpful?