This Windows console application is designed to streamline the process of managing Oracle Home network configuration files. The tool copies tnsnames.ora
and sqlnet.ora
files to all Oracle Home directories, with specific handling for additional configuration files if they are present.
- Copy
tnsnames.ora
andsqlnet.ora
to all Oracle Home directories - Append
tnsnames-config.ora
totnsnames.ora
if found - Replace
sqlnet.ora
withsqlnet-config.ora
if found
Run the application from the command line to automatically manage the Oracle Home configuration files.
tns.exe
- The tool locates all Oracle Home directories on the system.
- It copies the
tnsnames.ora
andsqlnet.ora
files to the{ORACLE_HOME}\NETWORK\ADMIN
directory. - If a
tnsnames-config.ora
file is found in{ORACLE_HOME}\NETWORK\ADMIN
, its contents are appended to thetnsnames.ora
file. - If a
sqlnet-config.ora
file is found in{ORACLE_HOME}\NETWORK\ADMIN
, it replaces thesqlnet.ora
file.
- Oracle Corporation for their database technology.