|
Each Rdb table created by the Exporter FM contains identification
information for the corresponding entity and all attributes in all partitions.
An entity identification information is built from the entity_out received
in MCC_call with verb = Show and partition = Identifiers.
Node4 has three valid identifiers:
- Name,
- Address,
- Registered Name.
When you do an MCC_call to Show attributes for Node4 or for Node4
children an instance for entity_out is always presented by a primary
identifier. In the case of Node4 primary identifier is an address.
For example,
MCC> show node4 rudone line sva-0
Using default ALL IDENTIFIERS
-----> Node4 4.773 Line sva-0
AT 10-JAN-1992 09:11:47 Identifiers
Examination of Attributes shows:
Name = SVA-0
MCC>
The only way you can find a Node4 name is to use MCC_NODE4 table
(of course, you have to set up a corresponding exporting request).
The MCC_NODE4 table contains a column NAME (an attribute from
identifiers partition).
So your problem can be solved as follow:
1. To set up two exporting requests:
- for NODE4 ANNECY and
- for NODE4 ANNECY LINE SVA-0
2. Do
SQL> SELECT Node4 FROM MCC_NODE4_LINE;
and receive an Node4 Address.
3. Do
SQL> SELECT Name FROM MCC_NODE4 WHERE NODE4 = 48.135;
Sam
|