Get all functions
get
/database/objects/functions/
Returns records where OBJECT_TYPE = 'FUNCTION' from DBA_PROCEDURES or ALL_PROCEDURES view depending on role at runtime. A client requires SQL Administrator or SQL Developer role to invoke this service.
Request
Query Parameters
-
limit: integer(int32)
The maximum number of records to return.
-
q:
Filtering is the process of limiting a collection resource by using a per-request dynamic filter definition across multiple page resources, where each page contains a subset of items found in the complete collection. Filtering enables efficient traversal of large collections.Examples
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Description of all functions in the database.
Root Schema : DatabaseObjectsFunctions
Type:
Show Source
object
-
count: integer
Total number of records in the current response.
-
hasMore: boolean
Indicates if there are more records to be retrieved.
-
items: array
items
-
limit: integer
The actual page size limit on number of records applied by the server.
-
links: array
links
-
offset: integer
The actual index from which the item resources are returned.
Nested Schema : items
Type:
Show Source
array
-
Array of:
object DatabaseObjectsFunctionsItem
Describes a function available in the database, along with associated properties. The list of attributes may vary depending on database version.
Nested Schema : DatabaseObjectsFunctionsItem
Type:
object
Describes a function available in the database, along with associated properties. The list of attributes may vary depending on database version.
Show Source
-
aggregate: string
Indicates whether the procedure is an aggregate function (YES) or not (NO).
-
authid: string
Indicates whether the procedure/function is declared to execute as DEFINER or CURRENT_USER (invoker).
-
deterministic: string
YES, if the procedure/function is declared to be deterministic; otherwise NO.
-
impltypename: string
Name of the implementation type, if any.
-
impltypeowner: string
Owner of the implementation type, if any.
-
interface: string
YES, if the procedure/function is a table function implemented using the ODCI interface; otherwise NO.
-
links: array
links
-
object_id: integer
Object number of the object.
-
object_name: string
Name of the top-level function.
-
object_type: string
The typename of the object.
-
origin_con_id: integer
The ID of the container where the data originates.
-
overload: string
Overload unique identifier.
-
owner: string
Owner of the function.
-
parallel: string
Indicates whether the procedure or function is parallel-enabled (YES) or not (NO).
-
pipelined: string
Indicates whether the procedure is a pipelined table function (YES) or not (NO).
-
polymorphic: string
The type of polymorphic table function.
-
procedure_name: string
Name of the procedure.
-
result_cache: string
Indicates whether the function is result???cached (YES) or not (NO).
-
subprogram_id: integer
Unique subprogram identifier.