INLINE LENGTH

Description

Identifies the Inline Lenght of the reference type column.

Click here to navigate to the IBM DB2 documentation page for this syntax

INLINE LENGTH is removed because it is not applicable in Snowflake.

Grammar Syntax

CREATE TABLE T1
(
COL1 VARCHAR(10) INLINE LENGTH 1024
);

Sample Source Patterns

IBM DB2

CREATE TABLE T1
(
COL1 VARCHAR(10) INLINE LENGTH 1024
);

Snowflake

 CREATE TABLE T1
(
COL1 VARCHAR(10)
-- ** MSC-WARNING - MSCEWI1002 - REMOVED NEXT STATEMENT, NOT APPLICABLE IN SNOWFLAKE.  **
--                 INLINE LENGTH 1024
);

Known issues

There are no known issues.

Last updated