EBS有哪些接口表?
作者: moonsoft(http://moonsoft.itpub.net)发表于: 2006.06.30 15:51
分类: EBS
出处: http://moonsoft.itpub.net/post/15182/128686
---------------------------------------------------------------
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%
建议去研究一下系统的标准并行程序,会了解在系统内部数据是如何抛转的,这里面用了很多接口表。


