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;

相关文章:

  • 2021-08-27
  • 2022-01-21
  • 2021-10-04
  • 2021-08-29
  • 2022-02-11
  • 2022-12-23
猜你喜欢
  • 2021-08-10
  • 2021-07-19
  • 2021-06-09
  • 2021-10-28
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案