Start of change

ADMIN ACCELERATOR ENABLE statement

The ADMIN ACCELERATOR ENABLE statement enables acceleration or replication for a table or tables that are defined on one or more accelerators.

Syntax

Read syntax diagramSkip visual syntax diagramADMINACCELERATORENABLETABLESON,accelerator-nameTYPEACCELERATIONREPLICATIONINCLUDE,table-name

Option descriptions

accelerator-name
The name of the accelerator on which you want to enable acceleration or replication for the specified table or tables.

You can specify more than one accelerator. Separate each name with a comma.

TYPE
Specifies the process to be enabled.
ACCELERATION
Acceleration is to be enabled.
REPLICATION
Replication is to be enabled.

If TYPE is not specified, the default value, TYPE ACCELERATION, is used.

INCLUDE table-name
Specifies the table or tables for which acceleration or replication is to be enabled. If multiple accelerators are specified in the statement, acceleration or replication is enabled for the specified tables on each accelerator.
table-name
The qualified name of the table (schema.name).

If you specify more than one table name, separate each name by a comma.

If you use wildcard characters, you can specify only one table name, and you must enclose the name or schema with a wildcard character in quotation marks. You can use the following wildcard characters:

_
Indicates a single character
%
Indicates a varying length string
*
Indicates a varying length string

Example table name specifications:

ADMF001.TBT1,ADMF002.TBT2
"ADMF%"."TBT_"
SYSADM."*"
End of change