The following query you run for the Maximo database will give you the indexes used by asset:
select mi.tbname, mi.name, mk.colseq, mk.colname, mk.ordering from maxsysindexes mi
join maxsyskeys mk on mk.ixname = mi.name
where mi.tbname = 'ASSET'
order by mi.tbname, mi.name, mk.colseq;
Oracle database equivalent would be:
SELECT table_name, index_name, column_position, column_name, descend
FROM all_ind_columns
WHERE table_name ='ASSET'
ORDER BY table_name, index_name, column_position
You can also view the same information in Maximo:
* go to System Configuration > Database Configuration
* Look up ASSET object
* look under Indexes tab
You can compare the two indexes you are asking about. Although I have 7.6.1.1 installed here, index names can vary depending on how much custom configuration you've done.
