Oracle® TimesTen In-Memory Database SQL Reference Release 11.2.1 Part Number E13070-03 |
|
|
View PDF |
The ALL_PROCEDURES view describes all PL/SQL functions and procedures, along with associated properties, that are accessible to the current user.
Related views
SYS.DBA_PROCEDURES all PL/SQL functions and procedures, along with associated properties. It has the same columns as ALL_PROCEDURES.
SYS.USER_PROCEDURES describes all functions and procedures, along with associated properties that are owned by the current user. This view does not display the OWNER column.
Columns
Column name | Type | Description |
---|---|---|
OWNER | VARCHAR2 (30) NOT NULL | Owner of the procedure or function. |
OBJECT_NAME | VARCHAR2 (30) NOT NULL | Name of the object: top-level function, procedure or package name. |
PROCEDURE_NAME | VARCHAR2 (30) | Name of the procedure or function. |
OBJECT_ID | TT_BIGINT NOT NULL | Object number. |
SUBPROGRAM_ID | NUMBER | Unique subprogram identifier. |
OVERLOAD | VARCHAR2(12) INLINE | Overload unique identifier. |
OBJECT_TYPE | VARCHAR2 (12) NOT NULL | Object type. |
AGGREGATE | VARCHAR2 (3) | Indicates if object is an aggregate function (YES or NO).
TimesTen does not support aggregate functions so value is 'N'. |
PIPELINED | VARCHAR2 (3) | Indicates if object is a pipelined table function (YES or NO).
TimesTen does not support PIPELINED so value is 'N'. |
IMPLTYPEOWNER | VARCHAR2 (30) | Name of owner of the implementation type, if any. |
IMPLTYPENAME | VARCHAR2 (30) | Name of the implementation type, if any. |
PARALLEL | VARCHAR2 (3) | Indicates whether the procedure or function is parallel-enabled (YES or NO).
TimesTen does not support PARALLEL, so value is 'N'. You can specify the |
INTERFACE | VARCHAR2 (3) | YES, if the procedure or function is a table function implemented using the ODCI interface; otherwise NO.
TimesTen does not support INTERFACE so value is 'N'. |
DETERMINISTIC | VARCHAR2 (3) | YES, if the procedure or function is declared to be deterministic; otherwise NO. |
AUTHID | VARCHAR2 (12) NOT NULL | Indicates whether the procedure or function is declared to execute as DEFINER or CURRENT_USER (invoker). |