Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member

Note: Whenever the SAPR3/SAPSR3 user gets locked, the following ABAP dumps occurs in SAP System.

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Steps to Unlock SAPSR3/SAPR3 user in database level (Oracle).

  

     Login to database using sqlplus / as sysdba

    Execute the query   select username, account_status from dba_users;

    Here the status of the user SAPSR3 is "Locked".

    To Unlock the user, exeute the query   alter user SAPSR3 account unlock;

    The User altered.

    Now execute the query   select username, account_status from dba_users;

    The Account_Status of user SAPSR3 has been altered (open).

    Hence the user SAPSR3 has been unlocked.

Note: Make sure that while login into Oracle DB, the  SQLNET.AUTHENTICATION_SERVICES = (NTS)  is not quoted (#) in sqlnet.ora file.

           If it is quoted (#) you are not authorized to log in as sysdba.

     Sqlnet.ora file is available in the location ORACLE _HOME \NETWORK\ADMIN.

==================================================================

7 Comments
Labels in this area