ORA-12514 during database startup [message #577893] |
Thu, 21 February 2013 09:14 |
lg123
Messages: 225 Registered: August 2008
|
Senior Member |
|
|
While starting up the database, I get the following error :
SQL> STARTUP
ORA-12514: TNS:listener does not currently know of service requested in connect
descriptor
|
|
|
|
Re: ORA-12514 during database startup [message #577899 is a reply to message #577894] |
Thu, 21 February 2013 10:10 |
lg123
Messages: 225 Registered: August 2008
|
Senior Member |
|
|
I was trying to use impdp command using sys user. I got the error "ORA-28009: connection as SYS should be as SYSDBA or SYSOPER", so I changed the value of O7_DICTIONARY_ACCESSIBILITY to true. It needed bouncing of the database. I could shutdown the database, but not startup. While startup, I got the error "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor".
content of listener file
-------------------------
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = CLRExtProc)
(ORACLE_HOME = C:\app\lg123\product\11.2.0\dbhome_2)
(PROGRAM = extproc)
(ENVS = "EXTPROC_DLLS=ONLY:C:\app\lg123\product\11.2.0\dbhome_2\bin\oraclr11.dll")
)
)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1522))
(ADDRESS = (PROTOCOL = TCP)(HOST = LNGDAYD-5002192.legal.regn.net)(PORT = 1522))
)
)
ADR_BASE_LISTENER = C:\app\lg123
content of tnsnames.ora file
-----------------------------
LISTENER_AVAYA =
(ADDRESS = (PROTOCOL = TCP)(HOST = LNGDAYD-5002192.legal.regn.net)(PORT = 1522))
ORACLR_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1522))
)
(CONNECT_DATA =
(SID = CLRExtProc)
(PRESENTATION = RO)
)
)
AVAYA =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = LNGDAYD-5002192.legal.regn.net)(PORT = 1522))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = avaya.legal.regn.net)
)
)
AVAYA_CERT = (DESCRIPTION=
(ADDRESS=(PROTOCOL=TCP)(HOST=cpdb2a113vip.hostname.com)(PORT=1521))
(ADDRESS=(PROTOCOL=TCP)(HOST=cpdb2a114vip.hostname.com)(PORT=1521))
(LOAD_BALANCE=yes)
(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=AVYOADB_SERVICE.olscert.lexisnexis.com)(FAILOVER_MODE=(TYPE=SELECT)(METHOD=BASIC)(RETRI ES=180)(DELAY=5))))
content of sqlnet.ora file
---------------------------
SQLNET.AUTHENTICATION_SERVICES= (NTS)
NAMES.DIRECTORY_PATH= (LDAP, TNSNAMES, EZCONNECT)
result of lsnrctl status
-------------------------
C:\Documents and Settings\lg123>lsnrctl status
LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 21-FEB-2013 10:47
:47
Copyright (c) 1991, 2010, Oracle. All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1522)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for 32-bit Windows: Version 11.2.0.2.0 - Produ
ction
Start Date 05-FEB-2013 08:18:18
Uptime 16 days 2 hr. 29 min. 30 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File C:\app\lg123\product\11.2.0\dbhome_2\network\admin\
listener.ora
Listener Log File C:\app\lg123\diag\tnslsnr\LNGDAYD-5002192\listener\
alert\log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1522ipc)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=LNGDAYD-5002192.legal.regn.net)(PORT
=1522)))
Services Summary...
Service "CLRExtProc" has 1 instance(s).
Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully
C:\Documents and Settings\lg123>
|
|
|
|