API concept in Oracle
API concept in Oracle
--==================================================---------------
--==================================================
--==================================================---------------
SELECT SUBSTR(a.OWNER,1,20)
OWNER,
SUBSTR(a.NAME,1,30) NAME ,
SUBSTR(a.TYPE,1,20) TYPE ,
SUBSTR(u.status,1,10) Stat
,
u.last_ddl_time ,
SUBSTR(text,1,80)
Description
FROM
dba_source a, dba_objects u
WHERE u.object_name = a.name
AND a.text LIKE '%Header%'
AND a.type = u.object_type
AND a.name LIKE 'POS_VENDOR_PUB_PKG%'
ORDER BY a.owner
--==================================================
select * from
all_objects
where
object_name like '%PUB%'
select * from
all_objects
where
object_name like '%API%'
Comments
Post a Comment