Is there a way to get metadata for the Oracle built-in aggeregate and other functions such as AVG, STDDEV, SQRT,
etc.?
I need to know object id and arguments meta.
In the SYS.ALL_OBJECTS
view I couldn't find anything useful. I also tried to search in SYS.ALL_ARGUMENTS
view by object_name.
Is there views or tables with built-in functions with data similar to SYS.ALL_OBJECTS
and SYS.ALL_ARGUMENTS
?
You have tagged Oracle 10g, but from what I can find, you'll need Oracle 11g r1 to find out metadata on built-in SQL functions.
The straight SQL (non-aggregation) built-in functions can be described in Oracle10g in SQL*Plus by issuing
describe SYS.STANDARD
.... snip for brevity