如何查看ORACLE中自带的函数代码

2025-03-10 06:54:20
推荐回答(1个)
回答1:

在user_objects里面,里面还存储了其他对象,通过object_type区分.

select object_name from user_objects
where object_type='FUNCTION';

这样就能看到函数名称了.
当然,跟别的一样,也有对应的all_objects,dba_objects.