Collections:
What Is a Connect Identifier in Oracle
What Is a Connect Identifier in Oracle?
✍: FYIcenter.com
A "connect identifier" is an identification string of a single set of connection information to a specific target database instance on a specific Oracle server.
Connect identifiers are defined and stored in a file called tnsnames.ora located in $ORACLE_HOME/network/admin/ directory. Here is one example of a "connect identifier" definition:
FYI_XE =
(DESCRIPTION =
(ADDRESS =
(PROTOCOL = TCP)
(HOST = dba.fyicenter.com)
(PORT = 1521)
)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = XE)
)
)
The above "connect identifier" defines "TNS_XE" with the following connection information:
⇒ Connect SQL*Plus Session to Oracle Server in Oracle
⇐ Requirements for SQL*Plus Connection in Oracle
2020-08-13, 2810🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on INSERT, UPDATE and DELETE Statements in MySQL...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...
What Is an Oracle Tablespace in Oracle? An Oracle tablespace is a big unit of logical storage in an ...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...