PRB: INSERT Can Freeze VFP if Table's Index File Corrupted

Last reviewed: January 20, 1997
Article ID: Q156581
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows 5.0

SYMPTOMS

If the INSERT command is executed on a Table that has a corrupted Index file, Visual FoxPro can freeze with the following error:

   "This program has caused an illegal operation and will be shutdown"

RESOLUTION

To fix this problem, do one of the following:

  • Issue the REINDEX command to attempt to repair the index file.
  • Copy the structure and contents of the table in question to another table as follows:

    USE TstTable COPY STRUCTURE TO mytst WITH PRODUCTION USE mytst IN 0 SELECT mytst APPEND FROM TstTable

You should now be able to use the INSERT command with the new table.

STATUS

This behavior is by design. There is no way to predict product behavior when data or index corruption has occurred.

MORE INFORMATION

If you issue an INSERT command similar to the following:

   INSERT INTO TstTable (TstField) VALUES ("aaaaa")

and the index file of TstTable is somehow corrupted, Visual FoxPro will produce the following error and will freeze:

   "This program has caused an illegal operation and will be shutdown"

You will be able to exit Visual FoxPro by clicking Close in the error dialog.


KBCategory: kbprg kbprb
KBSubcategory: FxprgSql
Additional reference words: 5.00 kbdse VFoxWin TABLE CORRUPT INDEX



THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 20, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.