PRB: Cannot Reuse Deleted Primary Key Values in Visual FoxPro

Last reviewed: November 29, 1995
Article ID: Q139756
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SYMPTOMS

Appending, inserting, or editing a record in a table with a primary key may result in this error:

   Uniqueness of index <index name> is violated.

CAUSE

This error occurs when a duplicate primary key value is entered, and it occurs even if the duplicate record is one that has been marked for deletion. This error occurs regardless of the setting of DELETED.

RESOLUTION

To be able to reuse keys that exist in deleted records, you must use a filtered index.

STATUS

This behavior is by design.

MORE INFORMATION

To create a filtered index so that you can reuse deleted keys, enter the following expression for the primary key Filter:

   !DELETED()

Now a deleted key can be reused in another record in the table. Although the setting of DELETED has no effect on the error, you may want to set DELETED ON, so that deleted records are not displayed.

NOTE: If the !DELETED() filter is placed on a primary key, then Gendbc.prg is used to create a program to rebuild the .Dbc, the resulting primary key will not have the filter expression.


Additional reference words: 3.00 VFoxWin
KBCategory: kbprg kbprb kbhowto
KBSubcategory: FxprgTable


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: November 29, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.