|
-
None of them work reliably although I have had some more success with Oracle9i networking than with 8i. Just remember that there are "some" (a lot in my opinion) provisos with TAF and connect-time failover. Have you read the following link?:
http://metalink.oracle.com/metalink/...1&p_showHelp=1
Unfortunately to achieve this the tnsnames.ora will need to be modified as the tool uses that to determine availability of the instance. So all of the tnsnames.ora would need to be updated (maybe update one then distribute this through some batch file on the a login?)
Here's a sample of one that worked for me (remember it's for a 9i client):
RIMCLUS1.RIM.NET =
(DESCRIPTION =
(ENABLE=BROKEN)
(ADDRESS_LIST =
(LOAD_BALANCE=OFF)
(FAILOVER=ON)
(ADDRESS = (PROTOCOL = TCP)(HOST = (ip 1))(PORT = 1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = (ip 2))(PORT = 1522))
)
(CONNECT_DATA =
(SERVICE_NAME =rimclus)
(INSTANCE_NAME=rimclus1)
(SERVER=SHARED)
(FAILOVER_MODE =
(BACKUP=RIMCLUS2.RIM.NET)
(TYPE=basic)
(METHOD=PRECONNECT)
(RETRIES=3))
)
)
RIMCLUS2.RIM.NET =
(DESCRIPTION =
(ENABLE=BROKEN)
(ADDRESS_LIST =
(LOAD_BALANCE=OFF)
(FAILOVER=ON)
(ADDRESS = (PROTOCOL = TCP)(HOST = (ip 2))(PORT = 1522))
(ADDRESS = (PROTOCOL = TCP)(HOST = (ip 1))(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME =rimclus)
(instance_name=rimclus2)
(SERVER=SHARED)
(FAILOVER_MODE =
(BACKUP=RIMCLUS1.RIM.NET)
(TYPE=select)
(METHOD=preconnect)
(RETRIES=3))
)
)
Last edited by ramaral; 12-03-2002 at 10:00 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|