Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have only found trial versions of these converters. Does anyone know a free one? Any of the following target formats will do:

CSV, MDB, SQL, XLS

share|improve this question
DBF as in dBase III / IV ? – marc_s Aug 10 '09 at 20:29
DBF as in ESRI Shapefiles (SHP), probably the same as dBase II – Jader Dias Aug 10 '09 at 20:32
2  
There's a very high probability the command line tool ogr2ogr (part of the gdal ogr utilities) can also perform this for you as it reads/writes almost all common GIS formats. – ChristopheD Aug 10 '09 at 22:05

closed as not constructive by Bill the Lizard Oct 6 '12 at 13:22

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

http://sourceforge.net/projects/dbf2csv

Very simply converter between dbf and csv. You don't need any database engine.

Very simple, but worked fine for me

share|improve this answer

I am able to open and convert .dbf files with LibreOffice 3.4.4, and export to a variety of formats.

share|improve this answer
up vote 7 down vote accepted

Microsoft Excel can open DBF files and save it on many formats

share|improve this answer
1  
Note that with an older MS-Excel version you might run into troubles with more than 65535 records... – Roalt Sep 3 '10 at 12:55
@Roalt Yes, that's true for Excel 2003 and older – Jader Dias Sep 3 '10 at 17:56
1  
Also, Excel tends to corrupt the dbase files if you change and save them. – dummzeuch Feb 13 '11 at 11:29
At least Mac Excel 2011 doesn't open it. The OGR2OGR tool works and is the correct answer to this question. – jjrv Feb 1 at 6:04

There's Exportizer (http://www.vlsoftware.net/exportizer/index.html) which also comes with a $$$$ "Pro" version, and DBF Viewer Plus (http://www.alexnolan.net/software/dbf.htm) by Alex Nolan.

Both are freeware, both should allow you to export to at least CSV (or more).

Marc

share|improve this answer

For XLS or CSV, use OpenOffice.org.

share|improve this answer
The first row will be field names, followed by type abbreviation, field width (if applicable), and decimal places (if applicable). There's probably an option to turn off this behavior. In the mean time if you have MS Excel, it defaults to not adding this information into the first row cells. – maxwellb Aug 10 '09 at 20:28

I wrote an article some years ago, about converting dbf's into datasets (xml readable by DataSet.ReadXml's function), however, it can be slow on big dbf's ,you can try it free though.

Article.

share|improve this answer

protected by Jader Dias Feb 5 at 22:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.