如何查询Oracle EBS接口表

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%

posted @ 2009-09-19 15:08  郭振斌  阅读(2077)  评论(0编辑  收藏  举报