I currently have a non-editable polygon layer whose data runs a nightly SQL script, pulling data from our CAMA system onto our enterprise database connection. The current workflow is to run a nightly job that TRUNCATE the table and then INSERTs the data from CAMA into our database.
However, I am hoping to add the capability to take the data offline on field maps. When taking the layer offline, on the database , new fields are added to the table:
- GDB_ARCHIVE_OID
- GlobalID
- GDB_FROM_DATE
- GDB_TO_DATE
- GDB_ROW_CREATE_REPLICA_GUID
- GDB_ROW_EXPIRE_REPLICA_GUID
With this, the current SQL Script syncing with our CAMA system becomes detrimental to maintaining offline capability on field maps. Because I am unsure how the offline data collection process works on the database side of things. I am wondering what would be best practice on how to approach creating a new SQL Script.