1.0

Table Of Contents
Example
This removes the AsyncEventListener named "mylistener" from all server groups that host
the listener:
drop asynceventlistener mylistener;
DROP GATEWAYRECEIVER
Remove a gateway receiver conguration from the SQLFire cluster.
Syntax
DROP GATEWAYRECEIVER receiver-name
receiver-name
The 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
2 rows selected
Drop a congured receiver by specifying its ID:
drop gatewayreceiver testreceiver;
DROP GATEWAYSENDER
Remove a gateway sender conguration from the SQLFire cluster.
Syntax
DROP GATEWAYSENDER sender-identifier
sender-identifer
The unique identier of the gateway sender conguration that you want to remove. This
corresponds to the identier that was supplied in the original CREATE GATEWAYSENDER
statement.
You can nd a list of congured senders by querying the GATEWAYSENDERS table on
page 607 .
475
SQL Language Reference