Deleting user-defined functions

Use the DROP statement to delete a user-defined function at the current server.

Procedure

Begin general-use programming interface information.To delete a user-defined function:

  1. Issue the DROP statement.
  2. Specify FUNCTION or SPECIFIC FUNCTION.

Example

For example, drop the user-defined function ATOMIC_WEIGHT from the schema CHEM:
DROP FUNCTION CHEM.ATOMIC_WEIGHT;

End general-use programming interface information.