I need to use RAC feature in implementing the database infrastructure with no single points-of-failure by employing redundancy, thus reducing the chances that any set of simultaneous failures will cause a loss of service.
For example, is there any way to translate tnsnames.ora file below in ODAC direct mode connection string?
Code: Select all
ARMSTRONG.ACCT =
(DESCRIPTION =
(ADDRESS_LIST=
(ADDRESS= (PROTOCOL = TCP)(HOST = server1)(PORT = 1521))
(ADDRESS= (PROTOCOL = TCP)(HOST = server2)(PORT = 1521))
(ADDRESS= (PROTOCOL = TCP)(HOST = server3)(PORT = 1521))
(FAILOVER = on)
(LOAD_BALANCE = on)
)
(CONNECT_DATA=
(SERVICE_NAME = acct.us.yourcompany.com)
)
)