How to get a list of native Oracle Functions Like (NVL, ABS etc)

a 夏天 提交于 2021-02-05 06:45:46

问题


I've trying with this command bellow, but does not work as i expected:

select OBJECT_NAME, OWNER from SYS.ALL_OBJECTS where upper(OBJECT_TYPE) = upper('FUNCTION') order by OWNER, OBJECT_NAME 

is there any way to achieve that?


回答1:


Check this one:

select distinct PROCEDURE_NAME
from ALL_PROCEDURES
where OWNER = 'SYS'
    and OBJECT_NAME = 'STANDARD';


来源:https://stackoverflow.com/questions/47200895/how-to-get-a-list-of-native-oracle-functions-like-nvl-abs-etc

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!