Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The issue started when i installed the server version with already existing client version of oracle 10G.

BackGround : The oracle client version 10G was installed (at c:/oracle) to connect database residing in other country. So we can just connect to it and have limited access to it.

Path => c:/oracle/ora_client/network/admin/listener.ora

So to work as admin I installed 10G server at the same location c:/oracle on windows. I can now work as server.

Path => c:/oracle/product/db_1/network/admin/listener.ora

But the issue arises when i try to connect with my application installed to setup connection as a client (to server residing in other country), it fails and throws an error ORA-12154.

So, do i have to uninstall my server version (just incase the confusion might have arrived due to the presence of two oracle databases) ?

How can I fix it ? What has been the probable cause for it ? Please advise !

share|improve this question

1 Answer

up vote 2 down vote accepted

When you installed the server version it updated the environment variables to point to the server installation and not the client installation. The definition of TNS aliases is done in tnsnames.ora and no the listener.ora. So you would have to copy the already existing entries from c:/oracle/ora_client/network/admin/tnsnames.ora to c:/oracle/product/db_1/network/admin/tnsnames.ora. Be careful that you obey the tnsnames.ora format.

share|improve this answer
Awesome ! :) thanks :) it works. Just last Q, where do check these enviromental variables ? I mean at what path for both client and server ? – ABeri Aug 31 '11 at 3:54
I assume this is windows. Under the user which installed oracle, check the settings of path and oracle* variables – steve Sep 1 '11 at 1:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.