Hi all,
I'm trying to test a client connect string with two different hostname address (where just one is on) , so, like explain in Oracle Net Manual (8.1.7) I expect Net8 should try to use the first host available.
The behavior it's right only if the node in on-line status is the first one, otherwise, reverting the two hostname I get tns-12535 Operation time out.
It seems , It just try the first address and without switch to try the second one!!!
It will be Fail Safe configuration on cluster, but I would like to know if the connection works right without FailSafe on server , just testing two different address using the on-line one.
Originally posted by farienzo It will be Fail Safe configuration on cluster, but I would like to know if the connection works right without FailSafe on server , just testing two different address using the on-line one.
Thanks
Then you are NOW, not aiming for Failsafe but for FMD (= Failover with Multiple Descriptions). Try this:
a. the alias name must start in column 1 otherwise: sqlplus fails ORA-12154: TNS:could not resolve service name tnsping fails TNS-03505: Failed to resolve name
b. the DESCRIPTION may start in column 1 but is not required to be
c. the ADDRESS_LIST must start from column 2 onwards otherwise: sqlplus fails ORA-12154: TNS:could not resolve service name tnsping fails TNS-03506: Failed to create address binding
d. all other sections must start from column 2 onwards otherwise: sqlplus fails ORA-06401: NETCMN: invalid driver designator tnsping fails TNS-03506: Failed to create address binding
e. the final closing parentheses may be in column 1 but is not required to be
Oracle Certified Master
Oracle Certified Professional 6i,8i,9i,10g,11g
email: ocp_9i@yahoo.com
Hi all,
I solved the question,
using sqlplus connection everything works fine,
I discovered that TNSPING command doesn't support several nodes connections on same service.
Thanks again.
Bookmarks