PRB: Cannot Reuse Deleted Primary Key Values in Visual FoxProLast reviewed: November 29, 1995Article ID: Q139756 |
The information in this article applies to:
SYMPTOMSAppending, inserting, or editing a record in a table with a primary key may result in this error:
Uniqueness of index <index name> is violated. CAUSEThis 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.
RESOLUTIONTo be able to reuse keys that exist in deleted records, you must use a filtered index.
STATUSThis behavior is by design.
MORE INFORMATIONTo 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
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |