Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: How to retrieve function metadata?

Re: How to retrieve function metadata?

From: padderz <member633_at_dbforums.com>
Date: Mon, 22 Sep 2003 07:22:48 -0400
Message-ID: <3398800.1064229768@dbforums.com>

For object level information (aggregate, deterministic, authid type etc.) look in the ALL_PROCEDURES and USER_PROCEDURES views. For example, an aggregate function is indicated by 'YES' in 'AGGREGATE' column, with the aggregated object type given by 'IMPLTYPEOWNER' and 'IMPLTYPENAME' columns and the parallel option in the 'PARALLEL' column.

For formal parameter level information (including return type) check in the ALL_ARGUMENTS or USER_ARGUMENTS views.

--
Posted via http://dbforums.com
Received on Mon Sep 22 2003 - 06:22:48 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US