I have installed both Oracle 12c and Oracle Client on Windows 8.1. The database was working fine until I installed Oracle Client Software alongwith Oracle Development tool for VS2013 as I wanted to develop a C# application that connected to Oracle database.However after I installed it I'm getting this error.
When I type the following sqlplus / as sysdba in cmd I get the following error:
ERROR
ORA-12560: TNS: protocol adapter error
I followed the steps on this link.
I Googled a lot and it seems that these are maybe interfering with each other. Can anybody help?
Most common issues:
As you have tagged Oracle 12c, I suggest you to first complete the mandatory post-installation steps. See Oracle 12c Post Installation Mandatory Steps.
UPDATE Based on comments, OP has updated the question.
You are connecting to the CDB and not to the PDB. As I have already mentioned here,
The most common misunderstanding is about “
SQLPLUS / AS SYSDBA” usage.Since we have checked the option to create database as a CDB, the “
SQLPLUS / AS SYSDBA” command will always connect to theCDB.So, you need to login as sysdba into PDB explicitly.
For example,
where
pdborclis the pluggable database.