SOLVED

ORA-00119: Invalid Specification For System Parameter LOCAL_LISTENER

Asked by OracleDba14 viewsoracle

#oracle#error

Solutions(1)

Accepted Solution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
I was getting ORA-00119 and ORA-00132 error while startup database in nomount mode

SQL> startup nomount

ORA-00119: invalid specification for system parameter LOCAL_LISTENER

ORA-00132: syntax error or unresolved network name 'LISTENER_PRIM'

This is because LOCAL_LISTENER parameter was used in the init file and not defined in the tnsnames.ora file.

So in the TNSNAMES.ORA file, added LISTENER_PRIM which contains hostname and port number.

cat tnsnames.ora

LISTENER_PRIM =

(ADDRESS = (PROTOCOL = TCP)(HOST = node1.learnomate.org)(PORT = 1521))

Now , You can start database in nomount mode

SQL> startup nomount;

ORACLE instance started.

Total System Global Area 1744828000 bytes

Fixed Size                  9135712 bytes

Variable Size             452984832 bytes

Database Buffers         1275068416 bytes

Redo Buffers                7639040 bytes

SQL>
OracleDba

Post Your Solution