How to view .DBF file?

AapoSipila

Newcomer
Joined
Jul 3, 2016
Messages
2
Reaction score
1
Points
0
I have a dbf file that I need to view the contents of. When I try to open in Visual FoxPro 9 It tells me it's missing the memo file.

how do I open the dbf file without the fpt file?
 
Have you tried a FoxPro forum? This forum is dedicated to backup/restore software, primarily Tivoli Storage Manager.
 
You have two options at least:

1) Create another table with memo field, close it, and rename the memo file to the missing one:
CREATE TABLE NoMemotst (mmm M)
APPEND BLANK
USE
RENAME NoMemotst.FPT TO <YourOriginalFile>.FPT
USE <YourOriginalFile>

2) Open a copy(!) of the table without memo in hexadecimal editor and overwrite its heading information - change all Memo columns to e.g. Character columns. It is just simple change of "M" to "C" but you have to be familiar with haxadecimal representation of binary files. The DBF heading structure is described in VFP help.

Also maybe this utility will help you DBF Recovery Toolbox. Read the information and check it will fit you or not. http://www.oemailrecovery.com/dbf_recovery.html
 
Thank you guys for your feedback and help. Sorry, that long time did not respond. This is because the issue was solved and I forgot to tell.) Thank you!
 
Back
Top