sqlplus: error while loading shared libraries: libsqlplus.so: cannot open shared object file: No such file o

[oracle@sujeet~]$ sqlplus / as sysdba
sqlplus: error while loading shared libraries: libsqlplus.so: cannot open shared object file: No such file o    

Solution:-

I did solve this error by setting

[oracle@sujeet ~]$
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib:$ORACLE_HOME

[oracle@sujeet ~]$ sqlplus / as sysdba


SQL> select name from v$database;

NAME
---------

Airtel

No comments:

How to set the schema session limit in Oracle 23 AI Database.

  In Oracle, to set a session limit per schema (user)—i.e., control how many concurrent sessions a specific user can have. You use profiles ...