<?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: Return Lat, Long with SQL query (Oracle) in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610548#M34417</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SRID value for WGS84 isn't 0, it is 4326.&amp;nbsp; For most systems, there is no spatial reference with an SRID value of 0, 0 is usually used by default to say there is no SRID value.&amp;nbsp; If all datasets have SRID of 0, you can calculate against them but mixing SRID of 0 with other values usually causes issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you appear to be running into this issue, which I think still applies to st_transform even though the KB doesn't state it:&amp;nbsp; &lt;A href="http://support.esri.com/es/knowledgebase/techarticles/detail/33081"&gt;Error:&amp;nbsp; ORA-20603: Spatial References are not compatible (from ST_Transform)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Apr 2015 16:25:41 GMT</pubDate>
    <dc:creator>JoshuaBixby</dc:creator>
    <dc:date>2015-04-01T16:25:41Z</dc:date>
    <item>
      <title>Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610546#M34415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In our Oracle 11g SDE (10.0), there's a point feature class with a Shape field of ST_Geometry type. It also has a Northing and Easting field that gets populated by GPS personnel. I need to be able to get &lt;SPAN style="font-family: 'courier new', courier;"&gt;GCS_WGS_1984&lt;/SPAN&gt; (SRID 0) latitude and longitude (decimal degrees) from the points that are in &lt;SPAN style="font-family: 'courier new', courier;"&gt;NAD_1983_HARN_StatePlane_Arizona_Central_FIPS_0202&lt;/SPAN&gt; (SRID 48). I'm sure there's a way to do it with &lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/006z/006z0000009s000000.htm"&gt;ST_Transform&lt;/A&gt;&lt;/SPAN&gt; and/or &lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/006z/006z0000003v000000.htm"&gt;ST_AsText&lt;/A&gt;&lt;/SPAN&gt;, but I haven't been able to figure it out; &lt;SPAN style="font-family: 'courier new', courier;"&gt;ST_AsText&lt;/SPAN&gt; always comes through as just &lt;SPAN style="font-family: 'courier new', courier;"&gt;(HUGE CLOB)&lt;/SPAN&gt;. What's the proper Oracle SQL syntax to get this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 21:07:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610546#M34415</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2015-03-31T21:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610547#M34416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I figured out &lt;A href="https://support.software.dell.com/toad-for-oracle/kb/62123" rel="nofollow noopener noreferrer" target="_blank"&gt;the &lt;SPAN style="font-family: 'courier new', courier;"&gt;(HUGE CLOB)&lt;/SPAN&gt; issue&lt;/A&gt;, but I still can't get it to convert from UTM to Latitude, Longitude. I get an error saying&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ORA-20603: Spatial References are not compatible.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ORA-06512: at "SDE.ST_GEOMETRY_SHAPELIB_PKG", line 788&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ORA-06512: at "SDE.ST_GEOMETRY_OPERATORS", line 2577&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Here's the SQL&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;SELECT EID, SHAPE, ST_X(SHAPE) as X, ST_Y(SHAPE) as Y,
&amp;nbsp;&amp;nbsp;&amp;nbsp; sde.st_astext(sde.st_transform(SHAPE, 0)) AS TEXTCOORD
FROM LIS.ADDRESS_PNT&lt;/PRE&gt;&lt;P&gt;I was just testing the ST_X and ST_Y to see if any ST_Geometry operations would work (and they did).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:07:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610547#M34416</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2021-12-12T02:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610548#M34417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SRID value for WGS84 isn't 0, it is 4326.&amp;nbsp; For most systems, there is no spatial reference with an SRID value of 0, 0 is usually used by default to say there is no SRID value.&amp;nbsp; If all datasets have SRID of 0, you can calculate against them but mixing SRID of 0 with other values usually causes issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you appear to be running into this issue, which I think still applies to st_transform even though the KB doesn't state it:&amp;nbsp; &lt;A href="http://support.esri.com/es/knowledgebase/techarticles/detail/33081"&gt;Error:&amp;nbsp; ORA-20603: Spatial References are not compatible (from ST_Transform)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 16:25:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610548#M34417</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-04-01T16:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610549#M34418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As always, thanks for the reply, Joshua. I get what you're saying, but I get this error when I try to use that number:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;ORA-20005: srid 4326 does not exist in st_spatial_references table.&lt;/P&gt;&lt;P&gt;ORA-06512: at "SDE.ST_GEOMETRY_OPERATORS", line 2556&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;When I look at the SDE.ST_Spatial_References table, the SRID column has smaller numbers and there are four records that have WGS1984 in the name. The CS_ID field has the 4326 number, but it doesn't appear that ST_Transform is looking at that field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 16:37:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610549#M34418</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2015-04-01T16:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610550#M34419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your stateplane data doesn't have the same datum, i.e., NAD83 != WGS84, which is what I think is throwing the error.&amp;nbsp; NAD83 and WGS84 may be very similar, and even treated the same in some transformations, but they aren't the same.&amp;nbsp; St_transform appears to want the datums to be exactly the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try SRIDs of 6152 and 4269.&amp;nbsp; I am thinking the former might work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 16:46:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610550#M34419</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-04-01T16:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610551#M34420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both 6152 and &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;4269 still give the s&lt;/SPAN&gt;ame error: SRID does not exist. The SRID column in the ST_Spatial_References table go from 0 to 56 and many of the values in SR_NAME are the same. Of the 56 records, there are only 8 distinct:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;GCS_WGS_1984&lt;/LI&gt;&lt;LI&gt;NAD_1927_StatePlane_Arizona_Central_FIPS_0202&lt;/LI&gt;&lt;LI&gt;NAD_1983_HARN_StatePlane_Arizona_Central_FIPS_0202&lt;/LI&gt;&lt;LI&gt;NAD_1983_HARN_StatePlane_Arizona_Central_FIPS_0202_Feet_Intl&lt;/LI&gt;&lt;LI&gt;NAD_1983_HARN_StatePlane_Arizona_Central_FIPS_0202_IntlFeet&lt;/LI&gt;&lt;LI&gt;NAD_1983_HARN_UTM_Zone_12N&lt;/LI&gt;&lt;LI&gt;NAD_1983_UTM_Zone_12N&lt;/LI&gt;&lt;LI&gt;Unknown_CoordSys&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Maybe our ST_Spatial_References table is incomplete?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 17:03:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610551#M34420</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2015-04-01T17:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610552#M34421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just checked in our development instance of SDE that we upgraded to 10.2.2 and the SDE.ST_Spatial_References table is different. It actually has SRIDs that match the expected numbers like 4269 and 4326, but it also has the other "off" numbers like 0 and 48. SRID 6152 is not in there at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried running the same query on the Dev 10.2.2 SDE database and I got it to work but the coordinates still seem wrong (there's no negative).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 18:42:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610552#M34421</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2015-04-01T18:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610553#M34422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I checked the spatial reference table in one of our Oracle 11g2 10.2.2 instances.&amp;nbsp; It has 5,269 entries with only 1 below SRID of 1000, and that is SRID = 0.&amp;nbsp; Interestingly enough, the name for SRID 0 is the same as for SRID 4326, i.e., GCS_WGS_1984.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding 6152, it looks like I fat-fingered it.&amp;nbsp; Try 4152.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 20:55:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610553#M34422</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-04-01T20:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610554#M34423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SRID 4152 was the ticket! However, it only works in 10.2.2 SDE. When I run the same query in 10.0 it errors because it can't find the SRID in the &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;spatial references table. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow-up questions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Any idea on the best way to update/refresh the &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;spatial references table in SDE so it has the right SRIDs?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Do you know if there is a way to calculate latitude and longitude as separate fields instead of the CLOB returned from ST_AsText?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 21:03:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610554#M34423</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2015-04-01T21:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610555#M34424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding the 1st question, it might be best to ask Esri Support since we are talking SDE system tables in a production geodatabases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the 2nd question, does using ST_X and ST_Y not work for you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 21:49:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610555#M34424</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-04-01T21:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610556#M34425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Doh! Yes, ST_X and ST_Y works.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;SELECT EID,
&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_X(sde.st_transform(SHAPE, 4152)) as LONGITUDE,
&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_Y(sde.st_transform(SHAPE, 4152)) as LATITUDE
FROM LIS.ADDRESS_PNT;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll see about getting our funked up spatial references table fixed. Thanks Joshua!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:07:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610556#M34425</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2021-12-12T02:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Return Lat, Long with SQL query (Oracle)</title>
      <link>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610557#M34426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After working with Esri support (thanks Jing!) I have some more information to share.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;To add a new entry to ST_SPATIAL_REFERENCE Table, you can create or import a feature class with the spatial reference you wanted to the geodatabase. Make sure you use ST_Geometry as the Configuration Keyword. By default, if you choose Default as the Configuration Keyword, it will create a ST_Geometry type feature class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you know a feature class that is using the desired SRID, you can import this feature class to your 10.0 geodatabase, there will be a new record account for this SRID in the ST_SPATIAL_REFERENCE Table.&lt;/P&gt;&lt;P&gt;If you want to create a feature class to generate the desired SRID, you can following the following steps&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;For example the SRID you wanted is 4152, you can run "select * from ST_COORDINATE_SYSTEMS where id=4152;" in Oracle. The returned Type field is Geographic, so when we select the coordinate system for our new feature class, you will go to Geographic Coordinate Systems. The Description Colum will give us a clue on where to find this coordinate system.&lt;/LI&gt;&lt;LI&gt; In ArcCatalog, right click on the database connection &amp;gt; New &amp;gt; Feature class &amp;gt; Provide Name, then click Next &amp;gt; Expand Geographic Coordinate Sytems, Then North America, select NAD 1983 HARN, then click Next &amp;gt; Next &amp;gt; Select Default as the Configuration Keyword, click Next &amp;gt; Finish&lt;/LI&gt;&lt;LI&gt;Check ST_SPATIAL_REFERENCE Table, you will see a new record show up in there.&lt;/LI&gt;&lt;LI&gt;Feel free to delete the feature class. Delete the feature class will not delete the record in the ST_SPATIAL_REFERENCE Table&lt;/LI&gt;&lt;/OL&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This worked in ArcSDE 10.0 but I haven't tested anything else. I'm assuming from looking at &lt;A href="http://resources.arcgis.com/en/help/main/10.2/006z/006z000000m2000000.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;the documentation&lt;/A&gt; that it works the same. The big thing to keep in mind here is that SRID is just an arbitrary number for that row in the &lt;SPAN style="font-family: 'courier new', courier;"&gt;ST_Spatial_References&lt;/SPAN&gt; table. It means nothing outside of that table. The SRID doesn't have to be the same as the CS_ID. So when we upgrade to 10.2.2, we will have to remember to check the SRIDs in the table to see if they changed and alter our SQL views accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I followed the steps to create a new feature class in SDE with the coordinate system I wanted (GCS_North_American_1983_HARN - 4152). Our final SQL for 10.0 uses 57 for SRID, which only applies to our particular SDE database.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;SELECT EID,&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_X(sde.st_transform(SHAPE, 57)) as LONGITUDE,&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_Y(sde.st_transform(SHAPE, 57)) as LATITUDE&amp;nbsp; 
FROM LIS.ADDRESS_PNT;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:07:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/return-lat-long-with-sql-query-oracle/m-p/610557#M34426</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2021-12-12T02:07:34Z</dc:date>
    </item>
  </channel>
</rss>

