Site icon BASIS GURU

2EETW169 no connect possible: “DBMS = ORACLE— dbs_ora_tnsname

www.basisguru.com

Today we will discuss about the issue during the oracle database startup.

Symptoms For Error 2EETW169 no connect possible:

Oracle doesn’t start & R3trans -d throws error as

“No connect possible

2EETW169 no connect possible: “DBMS = ORACLE— dbs_ora_tnsname = ‘DEV'”

Solution:

We analyzed many logs and few of the steps we performed to rectify the issue are as below:

CONNECT failed with sql error ‘28000’
ORA-28000 account is locked
Select username,ACCOUNT_STATUS from dba_users;
Account locked

Here SAPDEV user was locked, oracle unlock account should be performed to solve the issue using the command:

SQL> alter user <USER> account unlock;
<USER>=SAPDEV in our case

Reason and Prerequisites for 2EETW169 no connect possible:

what is ORA-28000 and when it occurs?

There are two situations when your account could be locked and to get ORA-28000 error.

Default profile in oracle Database Management Software has 10 failed login attempts and after that it locks the user account. So, need to unlock this.

SQL> select * from dba_profiles where resource_name like 'FAILED_LOGIN_ATTEMPTS%';

Results:

PROFILERESOURCE_NAMERESOURCELIMIT
DEFAULTFAILED_LOGIN_ATTEMPTSPASSWORD10
MONITORING_PROFILEFAILED_LOGIN_ATTEMPTSPASSWORDUNLIMITED

When you create a new database all default accounts are “EXPIRED & LOCKED” except SYS and SYSTEM. So, you need to unlock and change password to use them.

SQL> select username,account_status from dba_users;

USERNAME                       ACCOUNT_STATUS
------------------------------ --------------------------------
SYS                              OPEN
SYSTEM                           OPEN
SAPDEV                           EXPIRED & LOCKED
OUTLN                            EXPIRED & LOCKED

Exit mobile version