I have a MS Access mdb file. I need to convert it to a CSV file. How do i do it? Please do not point me to any freeware.
Thanks in advance
I have a MS Access mdb file. I need to convert it to a CSV file. How do i do it? Please do not point me to any freeware.
Thanks in advance
Plotly (https://plot.ly) will convert your MDB files to CSV for free.
EDIT: free Plotly users cannot use this functionality; a subscription is required.
Being no freeware, as you requested, I could recommend you Spectral Core's Full Convert Enterprise.
I've used it successfully in the past, too.
Update:
Since you clarified that you need a programmatic solution, I do recommend you do it manually:
With VBA
Dim db As DAO.Database
Dim tdf As TableDef
Set db = CurrentDb
For Each tdf In db.TableDefs
If Left(tdf.Name, 4) <> "MSys" Then
DoCmd.TransferText acExportDelim, , tdf.Name, tdf.Name & ".csv"
End If
Next
-- http://msdn.microsoft.com/en-us/library/aa220768%28v=office.11%29.aspx