Oracle8i SQL Reference Release 3 (8.1.7) Part Number A85397-01 |
|
SQL Statements:
CREATE SYNONYM to DROP ROLLBACK SEGMENT, 18 of 31
Use the DROP
FUNCTION
statement to remove a standalone stored function from the database.
See Also:
|
The function must be in your own schema or you must have the DROP
ANY
PROCEDURE
system privilege.
schema
Specify the schema containing the function. If you omit schema
, Oracle assumes the function is in your own schema.
function_name
Specify the name of the function to be dropped.
Oracle invalidates any local objects that depend on, or call, the dropped function. If you subsequently reference one of these objects, Oracle tries to recompile the object and returns an error if you have not re-created the dropped function.
If any statistics types are associated with the function, Oracle disassociates the statistics types with the FORCE option and drops any user-defined statistics collected with the statistics type.
See Also:
|
DROP
FUNCTION
Example
The following statement drops the function new_acct
in the schema riddley
and invalidates all objects that depend upon new_acct
:
DROP FUNCTION riddley.new_acct;
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|