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 6-5 Show JavaScript Call Specification Metadata
SELECT OBJECT_NAME, PROCEDURE_NAME, SIGNATURE, ENV_NAME, MODULE_NAME
FROM USER_MLE_PROCEDURES;
SQL*Plus output:
OBJECT_NAME PROCEDURE_NAME SIGNATURE ENV_NAME MODULE_NAME
------------ --------------- ---------------------- --------- ------------
CONCATENATE concat(string, string) JSMODULE
DO_NOTHING doNothing(string) JSMODULE
Parent topic: Call Specifications for Functions