Oracle - What TNS Names file am I using? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:59:53Zhttp://stackoverflow.com/feeds/question/10499http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using8Oracle - What TNS Names file am I using?Mark Harrison2008-08-13T23:49:15Z2008-12-04T21:46:45Z
<p>Sometimes I get Oracle connection problems because I can't figure out which tnsnames.ora file my database client is using.</p>
<p>What's the best way to figure this out? ++happy for various platform solutions. </p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/10501#105011Answer by Mark Harrison for Oracle - What TNS Names file am I using?Mark Harrison2008-08-13T23:52:15Z2008-08-28T06:36:59Z<p>For linux:</p>
<pre><code>$ strace sqlplus -L scott/tiger@orcl 2>&1| grep -i 'open.*tnsnames.ora'
</code></pre>
<p>shows something like this:</p>
<pre><code>open("/opt/oracle/product/10.2.0/db_1/network/admin/tnsnames.ora",O_RDONLY)=7
</code></pre>
<p>Changing to </p>
<pre><code>$ strace sqlplus -L scott/tiger@orcl 2>&1| grep -i 'tnsnames.ora'
</code></pre>
<p>will show all the file paths that are failing.</p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/11373#113731Answer by CodeSlave for Oracle - What TNS Names file am I using?CodeSlave2008-08-14T17:23:45Z2008-08-28T20:04:29Z<p>Shouldn't it always be "$ORACLE_ HOME/network/admin/tnsnames.ora"?
Then you can just do "echo $oracle_ home" or the *nix equivalent.</p>
<p>@Pete Holberton
You are entirely correct. Which reminds me, there's another monkey wrench in the works called TWO_ TASK</p>
<p>According <a href="http://www.orafaq.com/wiki/TNS_ADMIN" rel="nofollow">http://www.orafaq.com/wiki/TNS_ADMIN</a><br />
TNS_ADMIN is an environment variable that points to the directory where the SQL*Net configuration files (like sqlnet.ora and tnsnames.ora) are located. </p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/29711#297112Answer by Pete Holberton for Oracle - What TNS Names file am I using?Pete Holberton2008-08-27T08:06:18Z2008-08-27T08:06:18Z<p>@CodeSlave</p>
<p>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.</p>
<p>@Mark
Sorry that hasn't helped answer your question...</p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/29767#297671Answer by Ishmaeel for Oracle - What TNS Names file am I using?Ishmaeel2008-08-27T09:08:55Z2008-08-27T09:08:55Z<p>For Windows: <a href="http://technet.microsoft.com/en-us/sysinternals/bb896642.aspx" rel="nofollow">Filemon</a> from SysInternals will show you what files are being accessed.</p>
<p>Remember to set your filters so you are not overwhelmed by the chatty file system traffic.</p>
<p><img src="http://img134.imageshack.us/img134/6136/filmobe5.jpg" alt="Filter Dialog" /></p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/29807#2980711Answer by stjohnroe for Oracle - What TNS Names file am I using?stjohnroe2008-08-27T09:41:36Z2008-08-27T09:41:36Z<p>Hi,</p>
<p>Oracle provide a utility called tnsping</p>
<pre><code>R:\>tnsping someconnection
TNS Ping Utility for 32-bit Windows: Version 9.0.1.3.1 - Production on 27-AUG-20
08 10:38:07
Copyright (c) 1997 Oracle Corporation. All rights reserved.
Used parameter files:
C:\Oracle92\network\ADMIN\sqlnet.ora
C:\Oracle92\network\ADMIN\tnsnames.ora
TNS-03505: Failed to resolve name
R:\>
R:\>tnsping entpr01
TNS Ping Utility for 32-bit Windows: Version 9.0.1.3.1 - Production on 27-AUG-20
08 10:39:22
Copyright (c) 1997 Oracle Corporation. All rights reserved.
Used parameter files:
C:\Oracle92\network\ADMIN\sqlnet.ora
C:\Oracle92\network\ADMIN\tnsnames.ora
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = **)
(PROTOCOL = TCP) (Host = ****) (Port = 1521))) (CONNECT_DATA = (SID = ENTPR0
1)))
OK (40 msec)
R:\>
</code></pre>
<p>This should show what file you're using. The utility sits in the oracle bin directory</p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/35804#358040Answer by Trumpi for Oracle - What TNS Names file am I using?Trumpi2008-08-30T09:12:33Z2008-08-30T09:12:33Z<p>There is another place where the TNS location is stored: If you're using Windows, open <code>regedit</code> and navigate to <code>My HKEY Local Machine/Software/ORACLE/KEY_OraClient10_home1</code> where <code>KEY_OraClient10_home1</code> is your Oracle home. If there is a string entry called <code>TNS_ADMIN</code>, then the value of that entry will point to the TNS file that Oracle is using on your computer.</p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/37235#372350Answer by Robert Howlett for Oracle - What TNS Names file am I using?Robert Howlett2008-08-31T23:05:25Z2008-08-31T23:05:25Z<p>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:</p>
<p>The directory specified by the TNS_ADMIN environment variable (or registry value)</p>
<p>On UNIX operating systems, the global configuration directory. For example, on the Solaris Operating System, this directory is /var/opt/oracle</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/189142#1891420Answer by DCookie for Oracle - What TNS Names file am I using?DCookie2008-10-09T20:45:48Z2008-10-09T20:45:48Z<p>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:</p>
<pre><code>C:\Documents and Settings\me>D:\Oracle\10.2.0_DB\BIN\tnsping orcl
TNS Ping Utility for 32-bit Windows: Version 10.2.0.4.0 - Production on 09-OCT-2
008 14:30:12
Copyright (c) 1997, 2007, Oracle. All rights reserved.
Used parameter files:
D:\Oracle\10.2.0_DB\network\admin\sqlnet.ora
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = xxxx
)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = ORCL)))
OK (40 msec)
C:\Documents and Settings\me>tnsping orcl
TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 09-OCT-2
008 14:30:21
Copyright (c) 1997, 2005, Oracle. All rights reserved.
Used parameter files:
D:\oracle\10.2.0_Client\network\admin\sqlnet.ora
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
(HOST = XXXX)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = ORCL)))
OK (20 msec)
C:\Documents and Settings\me>
</code></pre>
<p>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)</p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/200344#2003440Answer by Rene for Oracle - What TNS Names file am I using?Rene2008-10-14T08:09:28Z2008-10-14T08:09:28Z<p>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:</p>
<p>ifile=path_to_tnsnames.ora_file/tnsnames.ora</p>
<p>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.</p>
http://stackoverflow.com/questions/10499/oracle-what-tns-names-file-am-i-using/341948#3419480Answer by stili for Oracle - What TNS Names file am I using?stili2008-12-04T20:31:19Z2008-12-04T21:46:45Z<p>The easiest way is probably to check the <strong>PATH</strong> environment variable of the process that is connecting to the database. Most likely the tnsnames.ora file is in <em>first Oracle bin directory in path</em>..\network\admin. TNS_ADMIN environment variable or value in registry (for the current Oracle home) may override this.</p>
<p>Using filemon like suggested by others will also do the trick.</p>