Who Can Alter an External Function
The ALTER EXTERNAL FUNCTION
statement can be executed by:
-
Owner of the external function
-
Users with the
ALTER ANY FUNCTION
privilege
The ALTER EXTERNAL FUNCTION
statement can be executed by:
Owner of the external function
Users with the ALTER ANY FUNCTION
privilege
ALTER EXTERNAL FUNCTION
ALTER EXTERNAL FUNCTION invl ENTRY_POINT 'intNvl';
ALTER EXTERNAL FUNCTION invl MODULE_NAME 'fbudf2';
DROP EXTERNAL FUNCTION
Drops a user-defined function (UDF) from the current database
DSQL, ESQL
DROP EXTERNAL FUNCTION funcname
Parameter | Description |
---|---|
funcname |
Function name in the database |
The DROP EXTERNAL FUNCTION
statement deletes the declaration of a user-defined function from the database.If there are any dependencies on the external function, the statement will fail and raise an error.
Any user connected to the database can delete the declaration of an internal function.
The DROP EXTERNAL FUNCTION
statement can be executed by:
Owner of the external function
Users with the DROP ANY FUNCTION
privilege
DROP EXTERNAL FUNCTION
addDay
function.DROP EXTERNAL FUNCTION addDay;