Oracle® Database SQL Reference 10g Release 2 (10.2) Part Number B14200-01 |
|
|
View PDF |
Purpose
Use the DROP
LIBRARY
statement to remove an external procedure library from the database.
Prerequisites
You must have the DROP
ANY
LIBRARY
system privilege.
Syntax
drop_library::=
Semantics
library_name
Specify the name of the external procedure library being dropped.
Example
Dropping a Library: Example The following statement drops the ext_lib
library, which was created in "Creating a Library: Examples":
DROP LIBRARY ext_lib;