Dictionary Views for Call Specifications
Metadata about JavaScript call specifications is available in the data dictionary using the [USER | ALL | DBA | CDB]_MLE_PROCEDURES views. The family of views maps call specifications (package, function, procedure) to JavaScript modules. This dictionary view is closely modeled after the *_PROCEDURES views.
For more information about *_MLE_PROCEDURES, see Oracle AI Database Reference.
Example: Show JavaScript Call Specification Metadata
SELECT OBJECT_NAME, PROCEDURE_NAME, SIGNATURE, ENV_NAME, MODULE_NAME
FROM USER_MLE_PROCEDURES;
Example output:
OBJECT_NAME PROCEDURE_NAME SIGNATURE ENV_NAME MODULE_NAME
------------ --------------- ---------------------- --------- ------------
CONCATENATE concat(string, string) JSMODULE
DO_NOTHING doNothing(string) JSMODULE