This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- FlexNet Operations
- :
- FlexNet Operations Knowledge Base
- :
- Reset password results in MultipleDataFoundException error in On-Premises.
Subscribe
- Mark as New
- Mark as Read
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
Reset password results in MultipleDataFoundException error in On-Premises.
Reset password results in MultipleDataFoundException error in On-Premises.
Description: When a user goes to the reset password page and provides user id, results in an error
Application error. Please contact the FlexNet administrator. (platform.exceptions.MultipleDataFoundException)
How to resolve this error?
Resolution: As the error message states, multiple user records exist in the database and the application is unable to uniquely identify the user.
Run the following query to take a look for any duplicate entities in the user table
select * from PLT_USER where USERID = "username"
The query should return multiple records in the table. Delete the duplicate rows to resolve the issue.
No ratings