cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Password logon no longer possible - too many failed attempts and no any user sap* also locked

0 Likes
956

I have installed sap trail system in my laptop but unfortunately sap* gets locked i want to reset it using database query how can i reset it please help me ?

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member185488
Participant
0 Likes

Dear Shubham,

Please follow the below instructions,

1.Login to your DB.

2.Execute the below statement to check the sap* entry.

select * from <db_schema>.usr02 where mandt = ‘000’ and bname = ‘SAP*’;

3.Execute the below statement to delete the sap* entry.

delete from <db_schema>.usr02 where mandt = ‘000’ and bname = ‘SAP*’;

Kindly mention the respective client in the place of 'mandt'. Once you execute this command sap* entry will be deleted and will be created automatically so that next time you can login with default password of pass

Regards,

Jeganraj

0 Likes