.mdb extraction

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
adill441
Posts: 14
Joined: 09 Aug 2012 12:21

.mdb extraction

#1 Post by adill441 » 05 Sep 2012 12:11

Hello All


i have a .mdb file and i need to extract all the data in it into a .txt file.. can any help me in this regard.


Thank You

abc0502
Posts: 1007
Joined: 26 Oct 2011 22:38
Location: Egypt

Re: .mdb extraction

#2 Post by abc0502 » 06 Sep 2012 02:59

Source
MS Access database files are containers of complete databases including schema, indexes and table data. A .csv file should be a dump of one single database table to be of any sane use. You usually shouldn't want sort of a filetype-to-filetype converter but rather a way to extract the information from the Access database that you want in a .csv file.

If you have MS Access available you can just open the database in Access and right-click each table and choose "Export". In the file dialog you can choose the format to export to, which will include plain-text formats such as .csv. In case your installation or version of Access doesn't directly support exporting to plain-text formats, you can follow rjmccann101's advice and export to an MS Excel workbook first which will work even with the oldest versions of Access. Alternatively, you may specify queries on your tables and export their results the same way.


This is a command line tool that extract data from MDB files to CSV file type Download

Post Reply