[GIS] How to export attributes with Python scripting in ArcGIS 10

arcgis-10.0python

How do I export an attribute table to dbf or txt format by use of Python in ArcGIS 10?

Best Answer

Import arcpy
arcpy.TableToTable_conversion("MyLayer",r"C:\Output","Mytable.dbf")

I suggest reviewing ArcGIS Online help.