I'm working on a script to synchronize between our recently implemented parcel fabric and our legacy parcels feature class currently residing in a versioned feature dataset.
I'm curious if others are doing something similar and whether you'd be willing to share your experience. The first part of my test is to truncate the parcels layer and I'm running into an error 999999 "A class in the topology necessitates validation being run within an edit session.
I created a new instances of the da.Editor and specified the connection and attempted to start an edit operation but I'm still getting the message "A class in the topology necessitates validation being run within an edit session."
Any feedback is appreciated.
Good afternoon @Anonymous User,
We're doing something similar by backfilling our traditional parcel layers and annotation layers with the new Parcel Fabric data for legacy ArcMap and other systems. This is just about a mandatory step if you want to continue to access the data from ArcMap via an enterprise geodatabase. However, we first unversioned our data to remove these complexities and, because the legacy data is now read-only, we no longer needed it to be versioned. Topology and versioning is now handled in the Parcel Fabric dataset.
I hope this helps.
That's helpful. Did you do the scripting in Python to export from Fabric into Enterprise GDB?
Yes, we have a scheduled task that runs a python script nightly to backfill a stand-alone feature class having the same name as the original, versioned feature class. This way, all the legacy apps that used the versioned feature class in the past can still connect to the new, stand-alone feature class outside the feature dataset. It appears to be a simple process. After reviewing the script, we don't use the last_edited_date for updates as @jcarlson does - we push the entire dataset nightly.
Are the legacy parcels and the new fabric available as published services? We do a similar sort of process between our parcel fabric and a simple polygon layer, but prefer to use the ArcGIS Python API to do so.
Due to the sheer quantity of parcels, we also use the last_edited_date field to identify parcels edited since the previous run of the script, and selectively add / edit / delete features as needed, rather than a full truncate/append process.
I figured I'd test the process in Model builder and here's what I get when I do this:
Error 160034: A class in the topology necessitates validation being run within an edit session.
In the database I have a mix of the feature datasets that are part of the parcel fabric and the feature dataset copied and pasted from SDE. Everything in the Land Records Feature Dataset is from the Legacy Parcels Feature Dataset.
I don't have another test instance to test the process in so I figured this is the closest I can get for now.
Is this an ok method to test the process?
Keary,
Good afternoon @Anonymous User
I didn't feel like my previous list was sufficient so I updated it here. This may be a better set of steps to follow. I'd appreciate if @jcarlson could also review and provide additional feedback. My steps may not be complete.
If I’m not mistaken, my team is using the Pro python because Desktop doesn't have access to the Pro Parcel Fabric.
It sounds like it'd work, but in my org we don't use ArcMap, and almost never use arcpy in our automated scripts, as everything is in published feature services. I don't know that I have much feedback for this particular workflow, but utilizing the XML schema to ensure the fields match is a great step to include in the process.
Another suggestion would be to join the Pro and ArcMap polygon tables and create a database view. This view can be filtered by dates, parcel types, branch versions, etc. The feature classes remain editable which essentially updates the view.
Here is some more info on querying branch versioned feature classes and creating views.