您的位置:首页 > 其它

获取AP的API列表

2009-12-04 11:28 176 查看
select substr(a.owner, 1, 20),
substr(a.name, 1, 30),
substr(a.type, 1, 20),
substr(u.status, 1, 10) stat,
u.last_ddl_time,
substr(text, 1, 80) description
from dba_source a,
dba_objects u
where 2 = 2
and u.object_name = a.name
and a.text like '%Header%'
and a.type = u.object_type
and a.name like 'AP_%API%'
order by a.owner,
a.name;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: