Is it possible to get a list of all Oracle Functions from Oracle Database??? Is there any table where all the supported functions of a particular Oracle Database Version is stored???
Thanks for your reply!. Your query gives me the User Defined Functions In Oracle. But what I require is a way to get List Of All Built In Oracle Functions eg. like Sum, Count, Decode etc.???
Sum, count, decode and some other functions are SQL (not pl/sql) functions and implemented within SQL engine, thus are hidden. Some common functions (e.g. substr, to_char etc) are in SYS.STANDARD package. As for other Oracle's system functions, you may list them by limiting query by "and owner='sys'" Regards, Dima
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.