Primary Keys

The following syntax is used to generate a statement for each exported primary key.

CREATE PK table 
   [DESC //description//] 
   [BASECREATORID basecreatorid] 
   COLS (column [, column]);

Keywords

The keywords correspond to values that can be specified for a primary key. For more information about an individual parameter, see Primary Keys.

PK table
The name of the primary key, specified in three parts (dbalias.creatorid.tablename), is required following the CREATE PK keyword.
DESC //description//
Description of the primary key, delimited by double slashes.
BASECREATORID basecreatorid
Creator ID used to create the primary key, if it is generic.
COLS (column,column)
This keyword is followed by a list of the columns in the primary key, enclosed in parentheses. Column names must be separated by commas and listed in order of precedence.