-
Execute this MQL command to find all objects in the vault:
<mql> temp query bus * * * vault VAULT_NAME;
You can scan the results to see duplicates.
-
Get the IDs of the duplicate business objects:
<mql> temp query bus TYPE NAME REV select id;
-
Rename (or delete) one of the conflicting objects:
<mql> modify bus ID name NEWNAME;
-
If necessary, repeat steps 2 and 3 for all duplicates.
-
When the vault contains only uniquely named business objects, re-index the vault to restore the Type/Name/Rev constraint and index:
<mql> index vault VAULT_NAME;
|