1.0

Table Of Contents
Example
This removes the gateway sender named "mysender" from all server groups that host the
sender:
drop gatewaysender mysender;
DROP FUNCTION
Drop the specied function.
Syntax
DROP FUNCTION function-name
Description
This statement is valid only if there is exactly one function instance with the function-name in the schema. The
identied function can have any number of parameters dened for it. If no function with the indicated name in
the named or implied schema, an error (SQLSTATE 42704) will occur. An error will also occur if there is more
than one specic instance of the function in the named or implied schema.
DROP INDEX
Drop the specied index.
Syntax
DROP INDEX index-name
Description
Drops the index in the given schema (or current schema if none is provided).
DROP PROCEDURE
Drop the specied procedure.
Syntax
DROP PROCEDURE procedure-name
Description
Drops the specied procedure. This statement is valid only if there is exactly one procedure instance with the
procedure-name in the schema. The identied procedure can have any number of parameters dened for it. If
no procedure with the indicated name in the named or implied schema, an error (SQLSTATE 42704) will occur.
An error will also occur if there is more than one specic instance of the procedure in the named or implied
schema.
DROP SCHEMA
Drop the specied schema.
Syntax
DROP SCHEMA schema-name RESTRICT
Description
The RESTRICT keyword enforces the rule that no objects can be dened in the specied schema for the schema
to be deleted from the database. The RESTRICT keyword is required.
vFabric SQLFire User's Guide476
vFabric SQLFire Reference