I just got some 20Gb of data in a Visual FoxPro database with a custom frontend probably written in the same framework, and need to extract that data in any well-known format. I don't know anything about VFP in particular, but as it is SQL, there should be a way of opening an SQL console, or maybe an vfpdump utility. How can I do that?

Everything I have now are a bunch of obscure binary files and a frontend executable.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted
dbview file.dbf > outfile.csv

or

dbf2mysql file.dbf > file.sql
link|improve this answer
feedback

Are you on Windows? You could check out the ODBC driver.

link|improve this answer
Yes, that frontend runs on Windows, but how can I 'connect' to the database consising of a several local files? – whitequark Nov 16 '10 at 14:31
What are their file extensions? Anyway the ODBC driver should take care of them – Joril Nov 16 '10 at 14:51
feedback

Your Answer

 
or
required, but never shown

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