How to resolve Error Unique key violation detected by database(Duplicate entry for key Username) ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2023 06:14 AM
How to resolve Error Unique key violation detected by database(Duplicate entry for key Username) ?
We are receiving the below Error while Import using Transform Map on User Table.
"FAILED TRYING TO EXECUTE ON CONNECTION glide.24 (connpid=****): Update sys_user SET u_legal_first_name = ***
Unique key violation detected by database(Duplicate entry '*****' for key 'Username'.
Please let me know how to resolve the Error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2023 06:45 AM
See:
Seems you are trying to create a new record with the same value for a field that is defined as a 'unique index'. You probably want to update the existing record and not create a new record.