How can I get the location of the tnsnames.ora file by code, in a machine with the Oracle client installed?
Is there a windows registry key indicating the location of this file?
feedback
|
|
Some years ago I had the same problem.
| |||||||
feedback
|
|
On Windows, the most likely locations are either Of course it is possible to have a working Oracle client without this file. Oracle has bewildering array of networking options, and there are plenty of ways to achieve a working setup with using TNSNAMES. Depending on what you are trying to achieve here, your first port of call might be the
In C# / .NET this should get you the environment variables:
| |||||||||
feedback
|
| |||||||||||
feedback
|
|
According to the net that depends on the version of Oracle and the working directory of the SQL*Plus process. This first link tells you the environment variable that specifies the base path for some versions (7, 8, 9i) of Oracle. If you use a different one, I'm sure there's a similar way to get to the system directory. If you spread versions of these files all over the place though and rely on the "look for a local tnsnames.ora first" behaviour of the client, then I guess you're out of luck. | |||
feedback
|
|
I'm not a C# or a Windows guy for that matter so hopefully this helps. The tnsnames.ora file should be located in:
If an alternate location has been specified, it should be available via the TNS_ADMIN registry key. See this link for more information on how Oracle handles tns names on Windows. | |||
|
feedback
|