SRCH_CMDREG

This command registry allows the server to look up an implementation and default parameters for a command interface

Column Descriptions:

NameTypeDescription
SRCH_CMDREG_IDBIGINT NOT NULLPrimary key
INTERFACENAMEVARCHAR (256) NOT NULLThe command interface name
TENANT_IDBIGINT NOT NULL DEFAULT 0The customer ID in a multi-tenant environment
STOREENT_IDINTEGER NOT NULL DEFAULT 0The ID for a store. A value of 0 means that this command implementation is applicable to all stores.
PROPERTIESVARCHAR (256)The default properties associated with this command. The properties are in the "property1=value1&property2=value2" form, where "propertyn" is the name of the property, and "valuen" is the value corresponding to the property
TARGETVARCHAR (256)Indicates where this command is to be executed. Currently the only valid value is Local, which means all commands are executed on the local machine.
CLASSNAMEVARCHAR (256)The implementation class name for a command
OPTCOUNTERSMALLINTThe optimistic concurrency control counter for the table. Every time there is an update to the table, the counter is incremented.

Indexes:

NameColumn NamesType
P_0044SRCH_CMDREG_IDPrimary Key
I0001540INTERFACENAME+TENANT_ID+STOREENT_IDUnique Index