DROP FUNCTION_SOURCE
Syntax
Description
Drops a function source. Only the owner of the function source can execute this command.
Important DROP FUNCTION_SOURCE
cannot be undone. Use it with care!
Parameters
function_source_name
The name of the function source to drop. If the name is case sensitive you must wrap it in double quotes; otherwise the system uses the lower case name.
Example
Drop a function source
Assume a function source, named mysrc
, is created using the CREATE FUNCTION SOURCE statement and is now available:
You can drop this function source with the below statement:
Last updated