0

I have 88 gdb files on Arcmap that I need to export to csv format. Is it possible to do this in batches? maybe, without using the python window

Kelly
  • 605
  • 2
  • 8
  • 22
  • yes but why going to a flat file? - this a GIS site csv to geodatabase would make sense. – Mapperz Jul 27 '15 at 16:02
  • 1
    I am going between GIS and another software, so I need to have a csv format, so it's readable in both. – Kelly Jul 27 '15 at 16:05
  • Would you be willing to use Python? – Cameron Sloan Jul 27 '15 at 16:06
  • 1
    I have never used it before, but if worst came to worst, I would try it out! – Kelly Jul 27 '15 at 16:07
  • File geodatabase (.gdb directories) is a container, not a dataset. There could be up to two billion tables in each of those geodatabases, which increases your problem complexity by an order of magnitude. – Vince Jul 27 '15 at 16:47
  • This is definitely a duplicate post of multiple questions that have already been answered. Some example are here, here, here. You can download and use this tool by ESRI Team Python here. – John Jul 27 '15 at 17:04
  • In fact, Table to Table will export to a .csv according to the help doc, and you can right-click and run in "Batch" in ArcCatalog or ArcMap or w/e. – John Jul 27 '15 at 17:06
  • Although a quick try at using Table to Table proves you can't export to CSV as the output , only read CSV as input. So someone at ESRI should update that help doc. – John Jul 27 '15 at 17:47

1 Answers1

0

There is a solution to this referenced using a python script to run this bulk conversion:

Conversion Solution Using Python

For the most part this looks outlined fairly well, and for any bulk processes (which it seems like you are doing a lot of bulk processes with bouncing between GIS and other software) python is very useful. I would look into this any try to give it a go. Also if you want to learn more about python and how it can help you, check out the following sites:

Codecademy

Python For Beginners

ArcPy Cafe

There are countless other resources out there, and the more you familiarize yourself to multiple options, the better your chances are to finding a best fit solution.

I hope that those references help you.

Cameron Sloan
  • 1,069
  • 7
  • 35