Start of change

ADMIN ACCELERATOR DISABLE statement

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

Syntax

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

Option descriptions

accelerator-name
The name of the accelerator on which you want to disable 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 disabled.
ACCELERATION
Acceleration is to be disabled.
REPLICATION
Replication is to be disabled.

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 disabled. If multiple accelerators are specified in the statement, acceleration or replication is disabled 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