Default: None Range: "suffix" Applies to: Oracle and SQL Server Clients
The create_index_suffix enables you to define extra attributes (a suffix) for create index SQL statements that the program generates for any given table. Each attribute list is defined with a number or index n so you can reference it. Up to 100 different suffixes can be defined. Individual indexes can select one of the suffixes by specifying this value in the index_suffix column of the corresponding DATATABLES Client control table entry. The index suffix is then concatenated to all create index SQL statements for this table.
Here's an example suffix for a SQL Server database which specifies file groups for create index statements:
create_index_suffix [1]="ON filegroup"
Here's an example suffix for an Oracle database:
create_index_suffix [1]="TABLESPACE name STORAGE MINEXTENTS 1 NEXT 10 MAXEXTENTS UNLIMITED"
|