FRAGMENT BY clause

Use the FRAGMENT BY clause to create a fragmented table and to specify its storage distribution scheme. The keywords PARTITION BY are a synonym for FRAGMENT BY.

This syntax fragment is part of the Storage options.
(1)
FRAGMENT BY clause for tables

1?  WITH ROWIDS 
2.1 FRAGMENT 
2.1  PARTITION 
1 BY 
1  ROUND ROBIN
2.1  IN + , dbspace
2.1  + ,  PARTITION partition IN dbspace
1  EXPRESSION %Expression Fragment Clause1
1  RANGE ( fragment_key ) %Interval Fragment Clause2
1  LIST ( fragment_key ) %List Fragment Clause3
Element Description Restrictions Syntax
column Column to which to apply the fragmentation strategy Must be a column within the table Identifier
dbspace Dbspace to store the table fragment You can specify no more than 2,048 dbspaces. All dbspaces that store the fragments must have the same page size. Identifier
fragment _key Cast, column, or function expression on a table column. This is the expression on which the table is fragmented. Columns must be from the current table only Expression
partition Name declared here for a fragment Must be unique among the names of fragments of the table Identifier

When you fragment a table, the IN keyword is followed by the name of the storage space where a table fragment is to be stored.