Click to See Complete Forum and Search --> : ORA-00119: invalid specification for system parameter LOCAL_LISTENER


arthik_babu
12-28-2007, 07:24 AM
Hi,

I am getting errors while starting up my database using command 'STARTUP'

ORA-00119: invalid specification for system parameter LOCAL_LISTENER
ORA-00132: syntax error or unresolved network name 'LISTENER_ORCL2'


Please have a look on sqlnet.ora , tnsnames.ora, listener.ora


sqlnet.ora

# sqlnet.ora Network Configuration File: c:\oracle\product\10.2.0\db_2\network\admin\sqlnet.ora
# Generated by Oracle configuration tools.

# This file is actually generated by netca. But if customers choose to
# install "Software Only", this file wont exist and without the native
# authentication, they will not be able to connect to the database on NT.


SQLNET.AUTHENTICATION_SERVICES= (NONE)

#NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)

NAMES.DEFAULT_DOMAIN=snr.babu.com

SQLNET.EXPIRE_TIME=10



tnsnames.ora

# tnsnames.ora Network Configuration File: c:\oracle\product\10.2.0\db_2\network\admin\tnsnames.ora
# Generated by Oracle configuration tools.

LISTENER_ORCL2 =
(ADDRESS = (PROTOCOL = TCP)(HOST = snr.babu.com)(PORT = 1522))


ORCL2 =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = snr.babu.com)(PORT = 1522))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl2)
)
)


ORCL =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST =snr.babu.com)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl)
)
)



EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC2))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)



listener.ora


# listener.ora Network Configuration File: c:\oracle\product\10.2.0\db_2\network\admin\listener.ora
# Generated by Oracle configuration tools.

SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = c:\oracle\product\10.2.0\db_2)
(PROGRAM = extproc)
)
)

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC2))
(ADDRESS = (PROTOCOL = TCP)(HOST = snr.babu.com)(PORT = 1522))
)
)


Thanks in Advance

ebrian
12-29-2007, 12:14 PM
Try to modify your tnsnames.ora entry to the following:

LISTENER_ORCL2 =
(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = snr.babu.com)(PORT = 1522)))

Bore
01-02-2008, 08:51 AM
@ebrian what's the difference? That's already there
@poster
try to change LISTENER_ORCL2 to LISTENER_ORCL2.snr.babu.com in the tnsnames.ora and let su know if it works

Regards

ebrian
01-02-2008, 01:51 PM
@ebrian what's the difference? That's already there

It's like that game, "What's different between these two pictures?". Take a look again.