import arcpy from arcpy import env env.workspace = "c:/Test" inTables = ["AJD_rate"] outLocation = "c:/Test" try: # Execute TableToDBASE arcpy.TableToDBASE_conversion(inTables, outLocation) except: print arcpy.GetMessages()
What version of ArcMap are you working with?What type of operating system are you (32-bit or 64-bit)?
The table I want to output to DBF is inside a .mxd file, but this script doesn't seem to require an input file, only a directory. The table name is "AJD_rate". Where am I going wrong? TIA
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.