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: Rauf Sarwar <rs_arwar_at_hotmail.com>
Date: Mon, 22 Sep 2003 07:23:30 -0400
Message-ID: <3398802.1064229810@dbforums.com>

Originally posted by Ashwin K Gudidevuni

> Hi,

>

> I wanted to know, how to retrieve information about the functions.

> Information like functions return type, its parameters and data
> type of its

> parameters, If its and aggregate function or not. If it belongs to any

> category of functions. Is there any schema defined to retrieve
> these values

> like Information_Schema.Parameters in Sql Server. If someone can
> help me by

> pointing to the right source...

>

> Thank you in advance.

> Ashwin.

Look at data dictionary view called all_arguments e.g.

select *

from sys.all_arguments

where owner = 'Object owner'

and object_name = 'Function name';

Regards

/Rauf Sarwar

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

Original text of this message

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