Wednesday, 13 June 2018

Solutions are Here

Error :

     ORA-12543: TNS:destination host unreachable

Solution:

    Open CMD Try the below Methods

           echo %ORACLE_HOME%

           echo %ORACLE_SID%

           set oracle_sid=<<Service name>> ( Example :    set oracle_sid=ORCL )

           sqlplus / as sysdba

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

Solutions are Here


Question:

       OPEN the PLUGGABLE DATABASE (PDB) 

Solution:

        Connect the Database in  SQL Developer  with DB Credential

        Run the below Query in SQL Developer 

                  SELECT name, open_mode FROM v$pdbs;

                  ALTER PLUGGABLE DATABASE PDBORCL OPEN;


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