问题
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