Auto update Excel table from PostgreSQL database

906
1
03-05-2019 02:43 PM
ManojParanthaman
New Contributor II

Hello Everyone,

Currently me and my team are using PostgreSQL database for multi user editing, we are editing a feature class for a large area which has 100 tiles. Currently, after every tile is completed we go to excel and update manually whether the tile is completed or not.

Is there a way using PostgreSQL or some other tool in ArcGIS where I can create a field in the table and as soon as a tile is completed it updates in PostgreSQL automatically,  which i can later use excel to connect to the data and know whether the data as either completed or not completed.ArcGIS IdeasDiscussions Lobby Solutions

0 Kudos
1 Reply
MarcoBoeringa
MVP Regular Contributor

Can you elaborate what you mean with "tiles" and how you actually know that they are "finished"?

This is really unexpected in PostgreSQL. The whole idea of working with a spatial database, is to not have "tiles" or map sheets maintained in the RDBMS, but only generate these upon export to e.g. PDF (or something like modern Vector Tiles). So you should be working "tile-less" on a seamless database.

As to technical implementation of some kind of automation in an RDBMS, one feature is the use of "triggers":

https://www.postgresql.org/docs/11/plpgsql-trigger.html

or define some custom function. But this all requires some DBA skills to implement.

Of course, there is also ESRI's commercial products, e.g. "ESRI Production Mapping" (https://www.esri.com/en-us/arcgis/products/esri-production-mapping/overview), that was specifically designed for managing a production mapping workflow and keeping track of progress of tasks and such.

0 Kudos