Index In

Description

Specifies the table space where the partitioned index on the partitioned table is to be store.

Click here to navigate to the IBM DB2 docs page for this syntax.

INDEX IN is not applicable in Snowflake.

Grammar Syntax

Sample Source Patterns

IBM DB2

CREATE TABLE TestTable
(
	COL1 INT
) INDEX IN TablespaceName;

Snowflake

CREATE TABLE PUBLIC.TestTable
(
	COL1 INT
)
-- ** MSC-WARNING - MSCEWI1002 - REMOVED NEXT STATEMENT, NOT APPLICABLE IN SNOWFLAKE.  **
--  INDEX IN TablespaceName
                         ;
  1. MSCEWI1002: REMOVED STATEMENT, NOT APPLICABLE IN SNOWFLAKE.

Last updated