Skip Headers
Oracle® TimesTen In-Memory Database SQL Reference
Release 11.2.1

Part Number E13070-04
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

SYS.ALL_PROCEDURES

The ALL_PROCEDURES view describes all PL/SQL functions and procedures, along with associated properties, that are accessible to the current user.

Related views

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 parallel_enable_clause, but it has no effect.

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).