Example: Renaming the Specific Name for a Function
This example renames the specific name for an SQL UDF.
RENAME SPECIFIC FUNCTION SpecificUDF1 TO SpecificUDF2;
Example: Renaming the Overloaded Calling Name for a Function
This example renames the overloaded calling name for an SQL UDF.
RENAME FUNCTION UDF1(INTEGER, INTEGER) TO UDF2;