14.16 DROP LIBRARY Statement
The DROP
LIBRARY
statement drops an external procedure library from the database.
Topics
Prerequisites
You must have the DROP
ANY
LIBRARY
system privilege.
Syntax
drop_library ::=
Semantics
library_name
Name of the external procedure library being dropped.
Example
Example 14-33 Dropping a Library
The following statement drops the ext_lib
library, which was created in "CREATE LIBRARY Statement":
DROP LIBRARY ext_lib;
Related Topics