Hoping some can point me in the right direction. I am trying to build a relationship that will allow me to see which transformers associated with a transformer bank support a service location based on the phase of that location.
I have something in SQL:
"Select a.CustName, a.Phase, a.TransformerBank, c.TransformerId, c.TransformerPhase
From ServiceAccountTest a
Join PhaseMap b On a.Phase = b.EndPointPhase
Join TransformerFeatureTest c On a.TransformerBank = c.TransformerBank and c.TransformerPhase = b.FeaturePhase"
The PhaseMap table is:
EndPointPhase FeaturePhase
------------- ------------
1 1
2 2
4 4
3 1
3 2
5 1
5 4
6 2
6 4
7 1
7 2
7 4
3 3
5 5
6 6
7 7
This give me the results I want, but I would like for something in the geodatabase that would allow the Identify and other tools to follow the relationships out.
Anybody got any ideas?