1.1.1

Table Of Contents
Syntax
DROP INDEX [ IF EXISTS ] [schema-name.]index-name
Description
Drops the index in the given schema (or current schema if none is provided). Include the IF EXISTS clause
to execute the statement only if the specied index exists in SQLFire.
DROP PROCEDURE
Drop the specied procedure.
Syntax
DROP PROCEDURE [ IF EXISTS ] 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. Include the IF EXISTS clause to execute the statement only if the specied
procedure exists in SQLFire.
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) occurs. An error also occurs if more than
one specic instance of the procedure exists in the named or implied schema.
DROP SCHEMA
Drop the specied schema.
Syntax
DROP SCHEMA [ IF EXISTS ] schema-name RESTRICT
Description
Include the IF EXISTS clause to execute the statement only if the specied schema exists in SQLFire. 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.
Example
DROP SCHEMA EMP RESTRICT;
The EMP schema may only be deleted from the database if no objects are dened in the
EMP schema.
DROP TABLE
Remove the specied table.
vFabric SQLFire User's Guide520
vFabric SQLFire Reference