When migrating joint use data into the UN schema, which option is recommended?
Example: From Asset Group Pole To Table StructureJunctionObject To Asset Group (new) Joint Use To Asset Type (new) Joint Use Type (with new Domain values for types of attachments [Fiber, Coax, 5G, etc])
Solved! Go to Solution.
You have three options, each with pros and cons.
The StructureJunctionObject will increase the size of the associations table which will impact the time of enable topology and disable topology. There are other potential impacts to things like validate, export subnetwork to name a few.
The geodatabase related table method avoids those issues, but introduces new issues. The relationship can lead to false or confusing conflicts and the user interface for geodatabase relationships leaves a bit to be desired.
The third option is to make the jointuse table a related table only in the map, not using a geodatabase releationship class. This avoids the conflict issue and actually provides a better UI experience for the user. The draw back is you must manually create the record in the joint use table and copy and paste the GLOBALID from the pole to the joinuse record. This could be done with an addin.
You have three options, each with pros and cons.
The StructureJunctionObject will increase the size of the associations table which will impact the time of enable topology and disable topology. There are other potential impacts to things like validate, export subnetwork to name a few.
The geodatabase related table method avoids those issues, but introduces new issues. The relationship can lead to false or confusing conflicts and the user interface for geodatabase relationships leaves a bit to be desired.
The third option is to make the jointuse table a related table only in the map, not using a geodatabase releationship class. This avoids the conflict issue and actually provides a better UI experience for the user. The draw back is you must manually create the record in the joint use table and copy and paste the GLOBALID from the pole to the joinuse record. This could be done with an addin.
Thank you for describing the 3 options. Could you briefly provide further details about the 'confusing conflicts'?
Let's take an example. I have a pole, that pole has no related joint use records. I create my version and create a joint use record for this pole, and I also update the pole-class. Before I can post my version, some updates the pole, say height. Now, when I reconcile, I get a conflict on the pole and the new related record. When it's just one update like this, it's pretty easy to fix. However, when many things are updated and in the conflict list, it gets very complicated very quickly.
Perfect - thanks! That clarifies the type of conflicts that can popup.
Thank you for the detailed answer. Regarding option 3, would an Attribute Rule close the gap instead of an AddIn? Would that Rule be supported across the ArcGIS platform?
An attribute rule would be tough to get to work as an attribute rule runs on the service, not the client, so it would have no knowledge of what rows you have selected.