I have installed oracle developers guide 10g in my windows 10, it installed successfully.
While connecting to Oracle EBS host data base it give an error
Entered detail on connection screen -
User - myuser
Pass - mypass
Connect String - myuser@SID
Error -
ORA-12154: TNS:could not resolve the connect identifier specified
Cause
The service name specified is not defined correctly in the TNSNAMES.ORA file. I check my TNSNAMES.ORA file at my database host machine
I found entry TNSNAMES.ORA -
SID =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = SID)
)
)
where and what changes i need do in settings file to connect it properly.
Note - host machine OS Linux
Note -
tnsnames.ora and sqlnet.ora files are present at two places
1- C:\DevSuiteHome_1\NETWORK\ADMIN - Path created after installing oracle developer guide 10g
2- E:\app\product\11.2.0\dbhome_1\NETWORK\ADMIN - previous oracle installation path
is there any catch in this file locations ?
tnsnames.orahas to be on the client machine, i.e. on your Windows PC. I'm not sure what "oracle developers guide" means, but the file needs to be somewhere that client application is expecting it to be. - Alex Poole