在oracle中怎么查询一个用户中存在的过程和函数?

2025-03-09 10:03:41
推荐回答(1个)
回答1:

改成大写,小写是查不出来的
select object_name,created,status from user_objects
where lower(object_type) in ('procedure','function');