<?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: Python and Geocoding in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69669#M5713</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Question...why would I have to create a table in memory...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;If I have a table in SQL Server.&amp;nbsp; &lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Cant I simply Geocode that table and create a Feature Class.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;This new feature class will then have the XY location.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Then simply Join the new FC back to the original SQL table (by unique value) and popuate the XY into the original table&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2012 13:53:33 GMT</pubDate>
    <dc:creator>JayKappy</dc:creator>
    <dc:date>2012-10-10T13:53:33Z</dc:date>
    <item>
      <title>Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69661#M5705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a stand alone table in SQL server.&amp;nbsp; I want to create a Python script to Geocode that table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can I set up a Geocoder to process that table and place XY coordinates into an XY Field in the table?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It has to process address and intersections.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I would have three fields House Number, Street, Intersecting Street&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any thoughts, examples on how to get started?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do I create an mxd with the table in it and save it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then write soem python script to point to that mxd and process the Geocode?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2012 14:25:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69661#M5705</guid>
      <dc:creator>JayKappy</dc:creator>
      <dc:date>2012-10-08T14:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69662#M5706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So Maybe something like this....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Grab the Database, then&amp;nbsp; create a table view and then soemhow GEOcode&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Although in my Case I would have to point to a SQL table, how different is the syntax for a SQL table versus an Access Database?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcgisscripting&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp = arcgisscripting.create()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.workspace = "d:/workspace/NFLD.mdb"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.maketableview "nf_roads", "TCH", "[ROAD_CLASS] = 'TCH'", "LEVEL ROAD_CODE VISIBLE, NAME NAME HIDDEN"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GEOCODE CODE HERE????&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2012 14:49:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69662#M5706</guid>
      <dc:creator>JayKappy</dc:creator>
      <dc:date>2012-10-08T14:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69663#M5707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am seeing some examples of Geocoding to Shapefile or another FC in the GDB...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But all I want to do is point to the Table View I create, then Geocode the XY into and XY field in the same table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can this be done?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Create the GeoProcessor&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; import arcgisscripting&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp = arcgisscripting.create()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Define Workspace&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.workspace = "SQL Server Table Location"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # create the Table view from teh SQL Server table with a WHERE clause&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.maketableview "nf_roads", "TCH", "[ROAD_CLASS] = 'TCH'", "LEVEL ROAD_CODE VISIBLE, NAME NAME HIDDEN"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Geocode and populate the XY fields with the XY location from the Geocode?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Can my input table of addresses be used as the output table where the XY coordinates are placed?&lt;/STRONG&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2012 16:36:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69663#M5707</guid>
      <dc:creator>JayKappy</dc:creator>
      <dc:date>2012-10-08T16:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69664#M5708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Anyone ever do this before?&amp;nbsp; Is it possible to write the XY from Geocoding to the same table?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 12:09:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69664#M5708</guid>
      <dc:creator>JayKappy</dc:creator>
      <dc:date>2012-10-09T12:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69665#M5709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Although in my Case I would have to point to a SQL table, how different is the syntax for a SQL table versus an Access Database&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;jay,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Use pyodbc or pymssql libaries to make the connections to your SQL Server&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://sourceforge.net/projects/pyodbc/"&gt;http://sourceforge.net/projects/pyodbc/&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://pymssql.sourceforge.net/examples_pymssql.php"&gt;http://pymssql.sourceforge.net/examples_pymssql.php&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd also say you could probably just populate an in_memory table to geocode from.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 11:08:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69665#M5709</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2012-10-10T11:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69666#M5710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;THanks for your reply&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;THe SQL connection see very famililar to others so I dont think that is going to be much of a problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ON the other hand creating an in memory table and then Geocoding to that and then using that to update the original SQL table....not getting my brain around that one....can you explain more...are there examples for this in moemory table creation..and then how wold I apply that table to the SQL Table?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Are you saying to create a table like in your second link with the values from the SQL Server table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Geocode against this table creating an output Feature Class&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Then copy over the XY from the new Feature Class to the Original Table in SQL Server&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Then Delete the Created table and Feature Class&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 11:48:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69666#M5710</guid>
      <dc:creator>JayKappy</dc:creator>
      <dc:date>2012-10-10T11:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69667#M5711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;THanks for your reply&lt;BR /&gt;THe SQL connection see very famililar to others so I dont think that is going to be much of a problem.&lt;BR /&gt;&lt;BR /&gt;ON the other hand creating an in memory table and then Geocoding to that and then using that to update the original SQL table....not getting my brain around that one....can you explain more...are there examples for this in moemory table creation..and then how wold I apply that table to the SQL Table?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;EDIT:&lt;BR /&gt;1. Are you saying to create a table like in your second link with the values from the SQL Server table.&lt;BR /&gt;2. Geocode against this table creating an output Feature Class&lt;BR /&gt;3. Then copy over the XY from the new Feature Class to the Original Table in SQL Server&lt;BR /&gt;4. Then Delete the Created table and Feature Class&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I was mainly pointing out ways to acquire the SQL server data, but yes you could populate a temporary table or an in_memory table with those rows and Geocode from this.&amp;nbsp; You'll have to deal with the field mapping (depending upon the database, it may not map directly to the temp table you need to create) --- here's how I deal with a cursor from an Oracle table (sorry for formatting issues.&amp;nbsp; it doesn't paste well into the editor here and python needs good formatting!):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
gp.createtable_management("IN_MEMORY", "TempDT", "", "")

&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cxRows = cursor.fetchall()
 rowcount = cursor.rowcount
 for row in range(1, rowcount - 1):
 
&amp;nbsp; tables = gp.ListTables()
&amp;nbsp; for tbl in tables:&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if tbl=="TempDT":
&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ### add the fields
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(0, len(cursor.description)):
&amp;nbsp;&amp;nbsp; val1 = str(cursor.description&lt;I&gt;[0])
&amp;nbsp;&amp;nbsp; val2 = str(cursor.description&lt;I&gt;[1])
&amp;nbsp;&amp;nbsp; val3 = str(cursor.description&lt;I&gt;[2])

&amp;nbsp;&amp;nbsp; if val2=="&amp;lt;type 'cx_Oracle.STRING'&amp;gt;":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fldType = "Text"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; val3 = cursor.description&lt;I&gt;[2]
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddField(tbl, str(cursor.description&lt;I&gt;[0]), fldType, val3)


&amp;nbsp;&amp;nbsp; if val2=="&amp;lt;type 'cx_Oracle.NATIVE_FLOAT'&amp;gt;":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fldType = "Float"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddField(tbl, str(cursor.description&lt;I&gt;[0]), fldType)


&amp;nbsp;&amp;nbsp; if val2=="&amp;lt;type 'cx_Oracle.DATETIME'&amp;gt;":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fldType = "Date"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.AddField(tbl, str(cursor.description&lt;I&gt;[0]), fldType)

&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ### now populate the table
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insRows = gp.InsertCursor(tblNew)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for cxRow in cxRows:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insRow = insRows.newRow()

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i in range(0, len(cursor.description)):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insRow.setvalue(str(cursor.description&lt;I&gt;[0]), cxRow&lt;I&gt;)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; insRows.insertRow(insRow)



&amp;nbsp; cursor.close() 
&amp;nbsp; db.close()
&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;***The above are snippets pulled from a larger def() so it may not work directly and require you to modify for your needs.&amp;nbsp; It is intended to be a general outline/view as to how I go from Oracle table to in_memory table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:40:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69667#M5711</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-10T22:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69668#M5712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your help....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So thats part 1 I guess...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Get the SQL Table into memory&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Geocode that table in Memory to new Feature Class?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Join Feature Class with SQL Table and update XY fields.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think this will work....Anyone else out there have any ideas.&amp;nbsp; Maybe something that I am not thinking about.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 13:48:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69668#M5712</guid>
      <dc:creator>JayKappy</dc:creator>
      <dc:date>2012-10-10T13:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69669#M5713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Question...why would I have to create a table in memory...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;If I have a table in SQL Server.&amp;nbsp; &lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Cant I simply Geocode that table and create a Feature Class.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;This new feature class will then have the XY location.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Then simply Join the new FC back to the original SQL table (by unique value) and popuate the XY into the original table&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 13:53:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69669#M5713</guid>
      <dc:creator>JayKappy</dc:creator>
      <dc:date>2012-10-10T13:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69670#M5714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Question...why would I have to create a table in memory...&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;If I have a table in SQL Server.&amp;nbsp; &lt;/LI&gt;&lt;/UL&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ok.&amp;nbsp; As long as it is in a Geodatabase.&amp;nbsp; From, &lt;/SPAN&gt;&lt;A href="http://webhelp.esri.com/arcgiSDEsktop/9.3/index.cfm?TopicName=Geocode_Addresses_%28Geocoding%29"&gt;http://webhelp.esri.com/arcgiSDEsktop/9.3/index.cfm?TopicName=Geocode_Addresses_%28Geocoding%29&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"The input address table can be any format supported by ArcGIS including INFO, dBASE, and geodatabase tables"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So for my implementation, that Oracle data/table is not registered with ArcSDE or in any supported format (it's just a non-spatial table that resides outside of any GIS infrastructure).&amp;nbsp; This means that I have to transform it into that supported format and I assumed you needed to do the same because in your OP you mention:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"...I have a stand alone table in SQL server."&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 14:22:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69670#M5714</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2012-10-10T14:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69671#M5715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is what I was trying to explain.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;SO it seems that I would have to create a temp table&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Table to Geocode is a Standalone SQL Server table (not SDE)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This would create a Feature Class as output once Geocoded.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Then take the FC and join back to the Standalone SQL Server table to append the XY corrdinates.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your thoughts and input.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 18:58:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69671#M5715</guid>
      <dc:creator>JayKappy</dc:creator>
      <dc:date>2012-10-10T18:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Python and Geocoding</title>
      <link>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69672#M5716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You could make an &lt;/SPAN&gt;&lt;A href="http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?TopicName=Adding%20OLE%20DB%20connections"&gt;OLEDB&lt;/A&gt;&lt;SPAN&gt; connection to the SQL Server and geocode off of that. Then use the &lt;/SPAN&gt;&lt;A href="http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?TopicName=Add_XY_Coordinates_(Data_Management)"&gt;add XY Coordinates &lt;/A&gt;&lt;SPAN&gt;tool to get the XY Coordinate you want.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 20:28:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-and-geocoding/m-p/69672#M5716</guid>
      <dc:creator>BradShore1</dc:creator>
      <dc:date>2012-10-10T20:28:37Z</dc:date>
    </item>
  </channel>
</rss>

