EBS有哪些接口表?

select *
from dba_objects db
where db.object_type = 'TABLE'
and db.object_name like '%INTERFACE%

select *
from dba_objects db
where db.object_type = 'TABLE'
and db.object_name like '%INTERFACE%' and owner like 'PO'

select *
from dba_objects db
where db.object_type = 'TABLE'
and db.object_name like '%INTERFACE%

相关文章:

  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2021-11-03
  • 2022-12-23
相关资源
相似解决方案