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
.mdb extraction
Moderator: DosItHelp
Re: .mdb extraction
Source
This is a command line tool that extract data from MDB files to CSV file type Download
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