Collections:
Verify Oracle TNS Settings in Oracle
How To Verify Oracle TNS Settings in Oracle?
✍: FYIcenter.com
If you have installed an Oracle server or an Oracle client tool on your local system, the TNS is automatically installed with a simple configuration file, tnsnames.ora, to define Oracle connect identifiers.
For example, if you have Oracle XE server installed, you will have the tnsnames.ora located at \oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN. It should contain a connect identifier called XE defined as:
XE =
(DESCRIPTION =
(ADDRESS =
(PROTOCOL = TCP)(HOST = localhost)
(PORT = 1521)
)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = XE)
)
)
See other tutorials for more details.
⇒ Define DSN with ODBC Manager in Oracle
⇐ Create Tables for ODBC Connection Testing in Oracle
2016-10-15, 2635🔥, 0💬
Popular Posts:
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To Format DATETIME Values to Strings with the CONVERT() Function in SQL Server Transact-SQL? SQL...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...