1.1

Table Of Contents
DROP DISKSTORE
Remove a disk store conguration from the SQLFire cluster.
Syntax
DROP DISKSTORE [ IF EXISTS ] store-name
IF EXISTS
Include the IF EXISTS clause to execute the statement only if the specied disk store exists
in SQLFire.
store-name
User-dened name of the disk store conguration that you want to remove. The available
names are stored in the SYSDISKSTORES system table.
Example
This command removes the disk store "STORE1" from the cluster:
DROP DISKSTORE store1;
DROP GATEWAYRECEIVER
Remove a gateway receiver conguration from the SQLFire cluster.
Syntax
DROP GATEWAYRECEIVER [ IF EXISTS ] receiver-name
IF EXISTS
Include the IF EXISTS clause to execute the statement only if the specied receiver exists
in SQLFire.
receiver-name
Unique identier for the receiver that you specied in the CREATE GATEWAYRECEIVER
statement .
Example
First query SYS.GATEWAYRECEIVERS to determine the list of available gateway
receivers that are congured in the system:
sqlf> select id, running_port, server_groups from
sys.gatewayreceivers;
ID |RUNNING_PORT |SERVER_GROUPS
|SERVER_GROUP
------------------------------------------------------------
TESTRECEIVER |1538 |TESTRECEIVERS
PRODUCTIONRECEIVER |1544 |PRODUCTIONRECEIVERS
503
SQL Language Reference