如何使用SQL查询Maximo域?

问题描述 投票:0回答:1

我在Maximo 7.6.1.1中有一个域称为DIVISIONS。


enter image description here


我想编写一条查询DIVISIONS域以获取VALUE和DESCRIPTION字段的SELECT语句。

查询将成为一个视图;通过dblink在单独的数据库中使用。

如何使用SQL查询Maximo域?

sql select oracle12c lookup-tables maximo
1个回答
0
投票

我可以查询ALNDOMAIN表(ALN代表字母数字):

select
    *
from
    alndomain
where
    domainid = 'DIVISIONS'

enter image description here


对于它的价值,还有一个[[parent域表(因为缺少更好的词)。

select * from maxdomain where domainid = 'DIVISIONS'
enter image description here
© www.soinside.com 2019 - 2024. All rights reserved.