Well, at least it didn't work for me just now -- I wonder if this has to do with 64bit and Access Drivers related issues?
There is no direct way to reference an MS Access Table to run thru the TableToTable_conversion method (I didn't notice it in the doc).
import arcpy, os arcpy.env.workspace = os.getcwd() arcpy.TableToTable_conversion('NP.mdb/myTable', 'NFG.gdb', "outTable")
My mistake, I read it as MS Excel...instead of MS Access.
There is no direct way to reference an MS Access Table to run thru the TableToTable_conversion method (I didn't notice it in the doc). Well, at least it didn't work for me just now -- I wonder if this has to do with 64bit and Access Drivers related issues?
get a table from MS ACCESS:http://resources.arcgis.com/en/help/main/10.2/index.html#//001200000027000000
intab = r'C:\TestAccessDB\Testdb.mdb\TestTable' wsout = r'H:\Documents\ArcGIS\Default.gdb' arcpy.TableToTable_conversion(intab, wsout, "WindOUT")
I've been after some help for two days now.. Still have not found and example that will work for me.. Use Py to get a table from MS ACCESS, clip, join and return the result in a new table.Walt.
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.