Sometimes I get Oracle connection problems because I can't figure out which tnsnames.ora file my database client is using.
What's the best way to figure this out? ++happy for various platform solutions.
|
2
|
Sometimes I get Oracle connection problems because I can't figure out which tnsnames.ora file my database client is using. What's the best way to figure this out? ++happy for various platform solutions.
|
|||
|
|
|
|
Hi, Oracle provide a utility called tnsping
This should show what file you're using. The utility sits in the oracle bin directory |
||
|
|
|
|
The easiest way is probably to check the PATH environment variable of the process that is connecting to the database. Most likely the tnsnames.ora file is in first Oracle bin directory in path..\network\admin. TNS_ADMIN environment variable or value in registry (for the current Oracle home) may override this. Using filemon like suggested by others will also do the trick. |
|||
|
|
|
|
On my development machine I have three different versions of Oracle client software. I manage the tnsnames.ora file in 1 of them. In the other two I have entered in the tnsnames.ora file: ifile=path_to_tnsnames.ora_file/tnsnames.ora This way, if for some reason the wrong tnsnames.ora file is used by a client it will always end up at the up-to-date version. |
||
|
|
|
|
Codeslave asks "Shouldn't it always be "$ORACLE_ HOME/network/admin/tnsnames.ora"? The answer is no, it isn't. Consider these two invocations of tnsping on the same machine:
Note the two different parameter file locations, that are dependent on which tnsping executable you're running (and perhaps where it's being run from). For tnsnames-based oracle networking, using the TNS_ADMIN variable is the only way to ensure you're getting a consistent tnsnames.ora file. (NOTE: Windows-centric answer) |
||
|
|
|
By default, tnsnames.ora is located in the $ORACLE_HOME/network/admin directory on UNIX operating systems and in the ORACLE_HOME\network\admin directory on Windows operating systems. tnsnames.ora can also be stored the following locations: The directory specified by the TNS_ADMIN environment variable (or registry value) On UNIX operating systems, the global configuration directory. For example, on the Solaris Operating System, this directory is /var/opt/oracle If you have multiple ORACLE_HOMES, be aware of which one you are using, as the location of the tnsnames.ora file can vary from one ORACLE_HOME to the next. For the person who mentioned the TWO_TASK environment variable, that is used to set a default database service name to connect to (which could be a database on another server). The service name you set TWO_TASK to is then looked up in the tnsnames.ora file when you connect. |
||
|
|
|
|
There is another place where the TNS location is stored: If you're using Windows, open |
||
|
|
|
|
For Windows: Filemon from SysInternals will show you what files are being accessed. Remember to set your filters so you are not overwhelmed by the chatty file system traffic.
|
||
|
|
|
|
@CodeSlave That's not always the case. You can use the TNS_ADMIN environment variable to point to a different tnsnames.ora. I've read, though I don't know whether this applies to all Oracle versions, that on some *nix operating systems Oracle will look in /etc or /var/opt/oracle before checking ORACLE_HOME. @Mark Sorry that hasn't helped answer your question... |
||
|
|
|
|
Shouldn't it always be "$ORACLE_ HOME/network/admin/tnsnames.ora"? Then you can just do "echo $oracle_ home" or the *nix equivalent. @Pete Holberton You are entirely correct. Which reminds me, there's another monkey wrench in the works called TWO_ TASK According http://www.orafaq.com/wiki/TNS_ADMIN |
|||
|
|
|
For linux:
shows something like this:
Changing to
will show all the file paths that are failing. |
|||
|
|