0% found this document useful (0 votes)
160 views1 page

Error: ORA-12514: TNS:listener Does Not Currently Know of Service Requested in Connect Descriptor Solution: Path For Listener - Ora File

This document provides a solution to the ORA-12514 error when connecting to an Oracle database. It instructs the user to edit the listener.ora configuration file located in the ORACLE_HOME directory to add a SID_LIST_LISTENER section defining the SID and GLOBAL_DBNAME parameters for the database in order to configure the listener service.

Uploaded by

Logic Master
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
160 views1 page

Error: ORA-12514: TNS:listener Does Not Currently Know of Service Requested in Connect Descriptor Solution: Path For Listener - Ora File

This document provides a solution to the ORA-12514 error when connecting to an Oracle database. It instructs the user to edit the listener.ora configuration file located in the ORACLE_HOME directory to add a SID_LIST_LISTENER section defining the SID and GLOBAL_DBNAME parameters for the database in order to configure the listener service.

Uploaded by

Logic Master
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

ERROR:

ORA-12514: TNS:listener does not currently know of service


requested in connect
descriptor

Solution:

Path for listener.ora file

%ORACLE_HOME%\NETWORK\ADMIN\listener.ora

Paste below text in your listener.ora file.

# listener.ora Network Configuration File:


C:\app\oracle_user\product\12.1.0\dbhome_1\network\admin\listener.ora
# Generated by Oracle configuration tools.

SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = CLRExtProc)
(ORACLE_HOME = C:\app\oracle_user\product\12.1.0\dbhome_1)
(PROGRAM = extproc)
(ENVS = "EXTPROC_DLLS=ONLY:C:\app\oracle_user\product\12.1.0\dbhome_1\bin\oraclr12.dll")
)
(SID_DESC =
(GLOBAL_DBNAME = orcl)
(ORACLE_HOME = C:\app\oracle_user\product\12.1.0\dbhome_1)
(SID_NAME = orcl)
)
)

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
)
)

You might also like