<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SQL Trigger to Auto-Calculate Coordinate Values in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448210#M25647</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reviving an old thread but I know but I was just looking into this same thing and there are templates on how to set up a trigger if you're using MSSQL as your DBMS on MSDN: &lt;A class="link-titled" href="https://msdn.microsoft.com/en-us/library/ms189799.aspx" title="https://msdn.microsoft.com/en-us/library/ms189799.aspx"&gt;CREATE TRIGGER (Transact-SQL).&lt;/A&gt;&amp;nbsp; It looks like the syntax is very similar across major DBs: &lt;A class="link-titled" href="https://en.wikipedia.org/wiki/Database_trigger" title="https://en.wikipedia.org/wiki/Database_trigger"&gt;Database trigger - Wikipedia, the free encyclopedia&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Sep 2016 19:29:19 GMT</pubDate>
    <dc:creator>ChrisMathers1</dc:creator>
    <dc:date>2016-09-06T19:29:19Z</dc:date>
    <item>
      <title>SQL Trigger to Auto-Calculate Coordinate Values</title>
      <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448204#M25641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does anyone know if it's possible to create a SQL trigger which would auto-calculate coordinate values for a feature class?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Example: For a point feature class, when a point is added or updated, the fields 'XCoordinate' and 'YCoordinate' would be auto-updated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If this is possible, would it also be possible to calculate the coordinate values based on another coordinate system from what is used for the feature class, like WGS84 for longitude and latitude?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Example Environment:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DBMS: SQL Server 2008 R2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Geometry: SQL Geometry&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 14:44:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448204#M25641</guid>
      <dc:creator>mpboyle</dc:creator>
      <dc:date>2014-05-05T14:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger to Auto-Calculate Coordinate Values</title>
      <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448205#M25642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sure, both are possible.&amp;nbsp; Microsoft might even have code posted in one of their forums.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Since this is SQL-Server specific, and doesn't involve Esri software (in implementation,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at least), there might not be much to find in these forums.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 16:14:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448205#M25642</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2014-05-05T16:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger to Auto-Calculate Coordinate Values</title>
      <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448206#M25643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I guess I was curious if anyone had implemented such a routine into their workflow...and if so...if they'd be willing to share a sample of their trigger.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 17:08:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448206#M25643</guid>
      <dc:creator>mpboyle</dc:creator>
      <dc:date>2014-05-05T17:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger to Auto-Calculate Coordinate Values</title>
      <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448207#M25644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This works when using SQL Geometry as the storage type, I'm not sure you can do what you're asking when using SDE binary, unless you cook up a really complicated stored procedure. As always, ESRI will disown you if you call tech support with any SDE issue and they discover you're using triggers, SP's, and such "under the hood". &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This allows to either populate UTM XY on insert from a GIS client, or create the geometry object on insert from a non-gis client (using a SP that also honors the Object ID creation!). In addition, it is also performing a number of intersect operations to populate some attributes that we adminstratively in all of our data per local protocol. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally, it's allowing us to set the GlobalID (LocationID Field) as a sequential GUID, which has done wonders to improve performance over the non-sequential default ESRI GUID. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Use at your own risk! &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

 
CREATE TRIGGER [dbo].[INSERT_VM_PLOTS_Location_ID]
ON [dbo].[VM_PLOTS]
INSTEAD OF INSERT NOT FOR REPLICATION
AS BEGIN
SET NOCOUNT ON; 
INSERT dbo.VM_PLOTS(
OBJECTID, VError, MapSource, SourceDate, MapMethod, QuadName, UnitCode, EditDate, UnitName, IsExtant, HError, County, State, LAT, LON, Watershed, PlaceName, TrailName, StreamName, Landform, Meta_MID, Road, Elevation, Year, Notes, Coord_Units, Coord_System, Datum, UTM_Zone, ManagementZone, ParkDistrict, EditBy, CreateBy, CreateDate, RegionCode, Restriction, Soil, Geology, HistoricDisturb, Veg, Level4EcoReg, AvgRain, MeanDailyTemp, Loc_Name, Directions, Description, Loc_Notes,X_Coord, Y_Coord, Shape
)
SELECT 
a.OBJECTID, a.VError, a.MapSource, a.SourceDate, a.MapMethod, b.NAME, a.UnitCode, a.EditDate, a.UnitName, a.IsExtant, a.HError, c.NAME, d.NAME, a.LAT, a.LON, e.HU_12_Name, a.PlaceName, a.TrailName, a.StreamName, a.Landform, a.Meta_MID, a.Road, a.Elevation, a.Year, a.Notes, a.Coord_Units, a.Coord_System, a.Datum, a.UTM_Zone, g.FCSubtype, f.District, a.EditBy, a.CreateBy, a.CreateDate, a.RegionCode, a.Restriction, j.MUNAME, k.GLG_SYM, l.CLASSES, h.VitalName, p.EPA_REGION, q.RANGE, a.MeanDailyTemp, a.Loc_Name, a.Directions, a.Description, a.Loc_Notes,a.X_Coord, a.Y_Coord, a.Shape
From
(SELECT 
OBJECTID, VError, MapSource, SourceDate, MapMethod, QuadName, UnitCode, EditDate, UnitName, IsExtant, HError, County, State, LAT, LON, Watershed, PlaceName, TrailName, StreamName, Landform, Meta_MID, Road, Elevation, Year, Notes, Coord_Units, Coord_System, Datum, UTM_Zone, ManagementZone, ParkDistrict, EditBy, CreateBy, CreateDate, RegionCode, Restriction, Soil, Geology, HistoricDisturb, Veg, Level4EcoReg, AvgRain, MeanDailyTemp, Loc_Name, Directions, Description, Loc_Notes,
 SHAPE = CASE WHEN SHAPE IS NOT NULL&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; THEN SHAPE ELSE Geometry::STPointFromText('POINT('&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; + CAST(X_Coord AS VARCHAR(20)) + ' '&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; + CAST(Y_Coord AS VARCHAR(20)) + ')', 26917) END,&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; X_Coord = CASE WHEN SHAPE IS NULL THEN X_Coord ELSE SHAPE.STX END,&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y_Coord = CASE WHEN SHAPE IS NULL THEN Y_Coord ELSE SHAPE.STY END
FROM inserted) 
AS a 
LEFT OUTER JOIN grsm.dbo.USGS_24K_TOPOMAP_BOUNDARIES AS b 
ON b.Shape.STContains(a.Shape) = 1 
LEFT OUTER JOIN grsm.dbo.GRSM_COUNTIES AS c 
ON c.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN grsm.dbo.GRSM_STATES AS d 
ON d.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN grsm.dbo.WBD_12 AS e 
ON e.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN grsm.dbo.RANGER_DISTRICTS AS f 
ON f.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN IANDM.dbo.GRSM_VEG AS h 
ON h.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN grsm.dbo.GRSM_GMP_ZONE AS g 
ON g.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN iandm.DBO.GRSM_Soil_Taxonomy AS j
ON j.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN IANDM.dbo.grsmglg AS k
ON k.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN IANDM.dbo.GRSM_DISTURBANCE_HISTORY AS l
ON l.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN IANDM.dbo.GRSM_LEVEL_IV_ECOREGIONS AS p
ON p.Shape.STContains(a.Shape) = 1
LEFT OUTER JOIN IANDM.dbo.AVERAGERAINFALL as q
ON q.Shape.STContains(a.Shape) = 1;
end
 
&lt;/PRE&gt;&lt;SPAN style="color: #0000ff; font-size: 2;"&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:01:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448207#M25644</guid>
      <dc:creator>ThomasColson</dc:creator>
      <dc:date>2021-12-11T20:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger to Auto-Calculate Coordinate Values</title>
      <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448208#M25645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;....and here's a another one that handles updates to the XY or the geometry....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;CREATE TRIGGER&amp;nbsp;&amp;nbsp;&amp;nbsp; [dbo].[GRSM_POINTS_OF_INTEREST_Update_Geo]
ON&amp;nbsp;&amp;nbsp;&amp;nbsp; [dbo].[GRSM_POINTS_OF_INTEREST]
after&amp;nbsp; UPDATE NOT FOR REPLICATION
AS&amp;nbsp;&amp;nbsp; 
BEGIN&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp; SET NOCOUNT ON;&amp;nbsp; 
 
&amp;nbsp; UPDATE p SET&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; X_Coord = CASE WHEN i.shape.STDimension() = 2&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; THEN i.shape.STCentroid().STX&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ELSE i.shape.STEnvelope().STCentroid().STX&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; END, 
&amp;nbsp;&amp;nbsp;&amp;nbsp; Y_Coord = CASE WHEN i.shape.STDimension() = 2&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; THEN i.shape.STCentroid().STY&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ELSE i.shape.STEnvelope().STCentroid().STY&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; END,&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; QuadName = COALESCE(b.name, p.QuadName),
&amp;nbsp;&amp;nbsp;&amp;nbsp; Watershed = COALESCE(c.HU_12_Name, p.Watershed),
&amp;nbsp;&amp;nbsp;&amp;nbsp; County = COALESCE(d.Name, p.County), 
&amp;nbsp;&amp;nbsp;&amp;nbsp; State= COALESCE(e.Name, p.State),
&amp;nbsp;&amp;nbsp;&amp;nbsp; SubRangerDistrict = COALESCE(f.District, p.SubrangerDistrict)
&amp;nbsp; FROM&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; dbo.GRSM_POINTS_OF_INTEREST AS p 
&amp;nbsp; INNER JOIN&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; inserted AS i 
&amp;nbsp;&amp;nbsp;&amp;nbsp; ON i.Location_ID = p.Location_ID 
&amp;nbsp; LEFT OUTER JOIN grsm.dbo.USGS_24K_TOPOMAP_BOUNDARIES AS b 
&amp;nbsp;&amp;nbsp;&amp;nbsp; ON b.Shape.STContains(i.Shape) = 1 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT OUTER JOIN grsm.dbo.WBD_12 AS c
&amp;nbsp;&amp;nbsp;&amp;nbsp; ON c.Shape.STContains(i.Shape) = 1 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT OUTER JOIN grsm.dbo.GRSM_COUNTIES AS d
&amp;nbsp;&amp;nbsp;&amp;nbsp; ON d.Shape.STContains(i.Shape) = 1 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT OUTER JOIN grsm.dbo.GRSM_States AS e
&amp;nbsp;&amp;nbsp;&amp;nbsp; ON e.Shape.STContains(i.Shape) = 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT OUTER JOIN dbo.GRSM_SUB_RANGER_DISTRICTS AS f 
ON f.Shape.STContains(i.Shape) = 1 
&amp;nbsp; WHERE EXISTS&amp;nbsp; 
&amp;nbsp; ( 
&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT 1 FROM inserted AS i2 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INNER JOIN deleted AS d 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ON i2.Location_ID = d.Location_ID 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE i2.Location_ID = i.Location_ID 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND i2.Shape.STEquals(d.Shape) = 0 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- ...and NULL handling if necessary 
&amp;nbsp; ); 
END
GO
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:01:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448208#M25645</guid>
      <dc:creator>ThomasColson</dc:creator>
      <dc:date>2021-12-11T20:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger to Auto-Calculate Coordinate Values</title>
      <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448209#M25646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tom,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the replies!&amp;nbsp; Most of that code is over my head as I'm not a heavy SQL user, just enough to be dangerous, but by no means an expert &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a 'template' sql trigger that could be written up for calculating x,y?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for the knowledge!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 18:19:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448209#M25646</guid>
      <dc:creator>mpboyle</dc:creator>
      <dc:date>2014-05-08T18:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger to Auto-Calculate Coordinate Values</title>
      <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448210#M25647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reviving an old thread but I know but I was just looking into this same thing and there are templates on how to set up a trigger if you're using MSSQL as your DBMS on MSDN: &lt;A class="link-titled" href="https://msdn.microsoft.com/en-us/library/ms189799.aspx" title="https://msdn.microsoft.com/en-us/library/ms189799.aspx"&gt;CREATE TRIGGER (Transact-SQL).&lt;/A&gt;&amp;nbsp; It looks like the syntax is very similar across major DBs: &lt;A class="link-titled" href="https://en.wikipedia.org/wiki/Database_trigger" title="https://en.wikipedia.org/wiki/Database_trigger"&gt;Database trigger - Wikipedia, the free encyclopedia&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 19:29:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448210#M25647</guid>
      <dc:creator>ChrisMathers1</dc:creator>
      <dc:date>2016-09-06T19:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger to Auto-Calculate Coordinate Values</title>
      <link>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448211#M25648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this behavior is always triggered in an ArcMap Desktop edit session whenever you create a feature or modify its geometry, you can use Attribute Assistant to do this using the X_COORDINATE and Y_COORDINATE methods. &amp;nbsp;You need to create an entry for each method and each target feature class in the dynamicValues table and add that table to your map, then make sure the Attribute Assistant add-in is turned on. &amp;nbsp;You can get Attribute Assistant &lt;A href="http://solutions.arcgis.com/shared/help/attribute-assistant/"&gt;here by pressing the Download button&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 19:58:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/sql-trigger-to-auto-calculate-coordinate-values/m-p/448211#M25648</guid>
      <dc:creator>RichardFairhurst</dc:creator>
      <dc:date>2016-09-06T19:58:31Z</dc:date>
    </item>
  </channel>
</rss>

