Error 2091- Table corrupted.

When opening a table that exists in a project I got the following message-
Repair the table using an appropriate third-party repair utility for Visual FoxPro tables before opening the table again.

What does this mean & how do I find a third-party repair utility?

Thanks!!!

[296 byte] By [sweetCoder] at [2007-12-16]
# 1
I found the software I needed. If anyone else out there needs this info let me know by replying to this post. Big Smile
sweetCoder at 2007-9-9 > top of Msdn Tech,Visual FoxPro,Visual FoxPro General...
# 2
SET TABLEVALIDATE TO 0 (zero)

this will solve the problem

for detail refer VFP9 help

SharathMum at 2007-9-9 > top of Msdn Tech,Visual FoxPro,Visual FoxPro General...
# 3

SharathMum wrote:
SET TABLEVALIDATE TO 0 (zero)

this will solve the problem

for detail refer VFP9 help

SET TABLE VALIDATE TO 0 does not "solve" the problem. All it does is mask it. VFP 9.0 is does stricter checkings and finds things that were wrong but not caught by the parser before.

Even though it gets you going for the moment, it does not fix the problem, just hides it. You should still see what's wrong and fix it in the table itself.

AlexFeldstein at 2007-9-9 > top of Msdn Tech,Visual FoxPro,Visual FoxPro General...
# 4
Alex Feldstein wrote:

SharathMum wrote:
SET TABLEVALIDATE TO 0 (zero)

this will solve the problem

for detail refer VFP9 help

SET TABLE VALIDATE TO 0 does not "solve" the problem. All it does is mask it. VFP 9.0 is does stricter checkings and finds things that were wrong but not caught by the parser before.

Even though it gets you going for the moment, it does not fix the problem, just hides it. You should still see what's wrong and fix it in the table itself.

i agree with u,
its my mistake i should have post the warning also that its a temporary solution

Tool to Repair
CM Table Repair Utility http://www.universalthread.com/wconnect/wc.dll?2,54,1,5

SharathMum at 2007-9-9 > top of Msdn Tech,Visual FoxPro,Visual FoxPro General...
# 5
Hi,
Check this if it could help.

http://ckkiet.blogspot.com/2004/07/one-of-possible-cause-vfp-table.html

chanmy8 at 2007-9-9 > top of Msdn Tech,Visual FoxPro,Visual FoxPro General...