TNS-12533: TNS:illegal ADDRESS parameters [message #113898] |
Sat, 03 May 2003 19:16 |
Rajesh Patel
Messages: 1 Registered: January 2001
|
Junior Member |
|
|
We are getting the following error messages when we go outbound from MVS to a SUN server :-
TNS Ping Utility for MVS: Version 8.1.7.3.1 - Production on 19-FEB-2003 16:13:27
(c) Copyright 1997 Oracle Corporation. All rights reserved.
Attempting to contact (ADDRESS=(PROTOCOL=TCP)(HOST=10.56.100.134)(PORT=1521)(SID=a))
TNS-12533: TNS:illegal ADDRESS parameters
Has anybody come across this issue before ?
Thanks Raj.
|
|
|
Re: TNS-12533: TNS:illegal ADDRESS parameters [message #113899 is a reply to message #113898] |
Sat, 03 May 2003 19:17 |
Richard Sibthorp
Messages: 1 Registered: May 2003
|
Junior Member |
|
|
: We are getting the following error messages when we go outbound from MVS to a SUN server :-
: TNS Ping Utility for MVS: Version 8.1.7.3.1 - Production on 19-FEB-2003 16:13:27
: (c) Copyright 1997 Oracle Corporation. All rights reserved.
: Attempting to contact (ADDRESS=(PROTOCOL=TCP)(HOST=10.56.100.134)(PORT=1521)(SID=a))
: TNS-12533: TNS:illegal ADDRESS parameters
: Has anybody come across this issue before ?
: Thanks Raj.
It is likely your tnsnames alias is incorrectly coded. It should look something like:
fred=(DESCRIPTION=
(ADDRESS=
(PROTOCOL=TCP)
(HOST=10.56.100.134)
(PORT=1521)
)
(CONNECT_DATA=
(SID=a)
)
)
|
|
|