ODBC Administrator Can't Find Oracle TNS Names File

106,447

Solution 1

It appears the tumbleweed rolled by on this one but just for everyone who may be experiencing the same issue; I was able to fix this by using the Net Configuration Assistant wizard and providing the right information. It generated tnsnames.ora in proper format AND it should be noted that the filename given to me was tsnames.ora!

Solution 2

If service name doesn't show in the dropdown, directly type in the service name and see if you are able to test the connection.

enter image description here

Solution 3

For the stupid souls like me: if you're writing out tnsnames.ora via notepad or so, make sure it doesn't have the .txt extension which is by (our) default not visible in windows explorer

Solution 4

Sorry to revive an ancient thread, but I had the same problem, and Net Configuration Assistant wouldn't run.

(Windows XP SP3, Oracle 11gR2 client)

SOLUTION:
1. Uninstall all other Oracle_Home instances using the Oracle (De-)Installer (don't just go deleting registry keys!), so that you only have the one Oracle_Home that you want to keep:
%oracle-home-that-you-want-to-keep%\client\oui\bin\setup.exe
2. Create or set Windows environment variables:
TNS_Admin = %oracle_home%\client_1\network\admin
Path = %oracle_home%\client_1; ...
3. Reboot. (sigh...)

Anyway, that's what worked for me.

Solution 5

Or just use a connection string that you enter in the textbox (the one that is supposed to get populated using the dropdownbox), e.g. 127.0.0.1/XE see here.

Share:
106,447
pixelbobby
Author by

pixelbobby

Updated on July 09, 2022

Comments

  • pixelbobby
    pixelbobby almost 2 years

    With a new Oracle Installation when I go to Configuration Management Tools > Microsoft ODBC Administrator > System DSN > Add > [new installation] it does not have the TNSNAMES.ora connection name in the drop down. With the old installation, this had worked.

    Create New Data Source

    I've tried updating Environment Paths and Registry keys but still can't find a way to get ODBC to see it in the drop down.

    enter image description here

    There was a previous installation of Oracle Client on the Windows Server. I tried to remove most of the files but our Oracle DBA said we could just do another install and update the Environment Paths with the new location.

    I understand there are two other posts on SO here and here regarding this issue. However, I'm not sure TNS PING will help yet because it seems to be an issue regarding Environment Paths and ODBC being able to locate the .ora file.

    TNSNAMES.ORA Location

    TNS_Admin = E:\app\[username]\product\11.2.0\client_1\network\admin\TNSNAMES.ora

    Environment Variables

    TNS_Admin = E:\app\[username]\product\11.2.0\client_1  
    Path = E:\app\[username]\product\11.2.0\client_1
    

    Registry Entries
    home3 is the new installation. Should I delete the old registry key (home2)? HKLM\SOFTWARE\ORACLE\KEY_OraClient11g_home2 and \..._home3

    Also, if I select "OraClient11g_home2" in the Create New Data Source screen here is what is displayed in the drop down:

    enter image description here

  • parakmiakos
    parakmiakos over 3 years
    File encoding appears to be irrelevant, the file works also in UTF8
  • Ak777
    Ak777 almost 2 years
    Wonderful answer. This solved my problem without needing to add Environment variables. Not sure if that step is still needed along my way, but this is also a great answer