- Open SSMS (SQL Server Management Studio) and log in using an account with super admin privileges.
- Once logged in, select the HRVIEW database and click on New Query.
- Write the following query to search for the user: “SELECT * FROM employeeprofile WHERE EmpID = '1'” (Replace '1' with the locked user's EmpID[userID].)
- Execute the query to view the results. Locate the user and check the column named LockAccount.
- Run the following query to update the LockAccount date and time: “update employeeprofile set LockAccount='2025-03-17 00:00:00' where EmpID='1'”
(Replace '2025-03-17 00:00:00' with the current date and time, and '1' with the locked user's EmpID[userID].)
- Execute the query. Upon successful execution, the user can try logging in to the webpage.
Note: You are working on a live database. Double-check all changes before executing any queries