I have a problem when I try to connect DB server with JDBC long TNSNAME style URL. We have two Oracle cluster servers. And here is my TNSNAME style URL.
jdbc:oracle:thin:@(DESCRIPTION=
(LOAD_BALANCE=ON)(FAILOVER=ON)(ADDRESS_LIST=
(ADDRESS=(PROTOCOL=TCP)(HOST=host1)(PORT=1250))
(ADDRESS=(PROTOCOL=TCP)(HOST=host2)(PORT=1250))
)
(CONNECT_DATA=
(SERVICE_NAME= DEV1)
)
)
My problem is when our DBA create the database, he used different service names for the host1 and host2. host1 is DEV1 and host2 is DEV2_B, and seems it cannot work if I switch the host sequence. Like
jdbc:oracle:thin:@(DESCRIPTION=
(LOAD_BALANCE=ON)(FAILOVER=ON)(ADDRESS_LIST=
(ADDRESS=(PROTOCOL=TCP)(HOST=host2)(PORT=1250)) /*host2 now come first, it would be cause connect failure.*/
(ADDRESS=(PROTOCOL=TCP)(HOST=host1)(PORT=1250))
)
(CONNECT_DATA=
(SERVICE_NAME= DEV1)
)
)
I think under this situation, Fail over and load balance are useless. My question is, how to set the service_name separately in my URL? (Those two DB also use different SID. DEVA and DEVB) Please help, thanks.