<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-6850817271941197798.post6927886174890121557..comments</id><updated>2011-09-26T22:16:06.477-07:00</updated><category term='Downloads/Tools'/><category term='UNIX'/><category term='Articles/Best Practices'/><category term='Transportable TBS'/><category term='SQL'/><category term='Certification'/><category term='Backup/Recovery'/><category term='RMAN Recovery'/><category term='Corruption/Recovery'/><category term='Oracle Agile'/><category term='Oracle Beta Program'/><category term='OCR - VOTE'/><category term='Migrate'/><category term='Patch/Bug Fix'/><category term='RAC-Errors'/><category term='TNS Errors'/><category term='ASM'/><category term='Administration'/><category term='UTL_MAIL'/><category term='Data Pump'/><category term='Upgrade 8i to 10g'/><category term='EM Grid Control'/><category term='Flash Recovery Area'/><category term='Upgrade to 10.2.0.4'/><category term='RAC Admin'/><category term='Oracle 11g New Feat'/><category term='RMAN Backup'/><category term='Ora-Errors'/><category term='Oracle 10g New Feat'/><category term='Export/Import'/><category term='Spfile and Pfile'/><category term='Installation'/><title type='text'>Comments on Oracle DBA and RAC DBA Expert: Oracle RAC load balancing and failover</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.oracleracexpert.com/feeds/6927886174890121557/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html'/><author><name>Satishbabu Gunukula</name><uri>http://www.blogger.com/profile/02630966486825083489</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='http://1.bp.blogspot.com/-6LVrTZp4FAc/TyuE2-poniI/AAAAAAAAAH8/LLuSIKxM0mU/s220/untitled2.bmp'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-62198325885579272</id><published>2011-09-26T22:16:06.477-07:00</published><updated>2011-09-26T22:16:06.477-07:00</updated><title type='text'>Hi Satishbabu,
Thanks so much for  your reply.. My...</title><content type='html'>Hi Satishbabu,&lt;br /&gt;Thanks so much for  your reply.. My problem is I have this Makefile that has some info to make jdbc connection.  It takes the -DRME_Server = db servername,-DDB_NAME which is SID and the port and db user info.  Any idea how to add the syntax you mentioned to these settings in Makfile?  Thanks so much.&lt;br /&gt;&lt;br /&gt;# JDK application settings&lt;br /&gt;#----------------------------------------------------------------------&lt;br /&gt;JAVA_FLAGS = -classpath $(CLASSPATH) -Dorg.omg.CORBA.ORBClass=IE.Iona.OrbixWeb.CORBA.ORB -Dorg.omg.CORBA.ORBSingletonClass=IE.Iona.OrbixWeb.CORBA.singletonORB -DRME_PORT=&amp;quot;12502&amp;quot; -DRME_SERVER=&amp;quot;efkxrme11&amp;quot; -DDB_NAME=&amp;quot;rme1&amp;quot; -DDB_USER=&amp;quot;rm&amp;quot; -DDB_PASS=&amp;quot;rm&amp;quot;&lt;br /&gt;JAVAC_FLAGS = -d $(CLASS_DIR) -classpath $(CLASSPATH)&lt;br /&gt;#-----------------------------------------------</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/62198325885579272'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/62198325885579272'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1317100566477#c62198325885579272' title=''/><author><name>CJ</name><uri>http://www.blogger.com/profile/00148687911836509358</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1407591862'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-870023487921165760</id><published>2011-09-26T13:20:36.821-07:00</published><updated>2011-09-26T13:20:36.821-07:00</updated><title type='text'>Use below syntax when you configure connection to ...</title><content type='html'>Use below syntax when you configure connection to an Oracle RAC environment.&lt;br /&gt;&lt;br /&gt;jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST= rac1.domain.com)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST= rac2.domain.com)(PORT=1521))(FAILOVER=on)(LOAD_BALANCE=on)(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=dbservice)))&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Satishbabu Gunukula&lt;br /&gt;http://www.oracleracexpert.com</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/870023487921165760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/870023487921165760'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1317068436821#c870023487921165760' title=''/><author><name>Satishbabu Gunukula</name><uri>http://www.blogger.com/profile/02630966486825083489</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1925255453'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-8650936980081923690</id><published>2011-09-26T09:43:26.106-07:00</published><updated>2011-09-26T09:43:26.106-07:00</updated><title type='text'>use jdbc:oracle:thin:@ : 

Getting the hostname, S...</title><content type='html'>use jdbc:oracle:thin:@ : &lt;br /&gt;&lt;br /&gt;Getting the hostname, SID,DB User, DB port&lt;br /&gt;from JAVA FLAGS:&lt;br /&gt;JAVA_FLAGS      = -classpath $(CLASSPATH) -Dorg.omg.CORBA.ORBClass=IE.Iona.OrbixWeb.CORBA.ORB -Dorg.&lt;br /&gt;omg.CORBA.ORBSingletonClass=IE.Iona.OrbixWeb.CORBA.singletonORB -DRME_PORT=&amp;quot;14150&amp;quot; -DRME_SERVER=&amp;quot;efk&lt;br /&gt;xracs&amp;quot; -DDB_NAME=&amp;quot;RMET1&amp;quot; -DDB_PORT=&amp;quot;1526&amp;quot; -DDB_USER=&amp;quot;rm&amp;quot; -DDB_PASS=&amp;quot;rm&amp;quot;&lt;br /&gt;JAVAC_FLAGS     = -d $(CLASS_DIR) -classpath $(CLASSPATH)&lt;br /&gt;&lt;br /&gt;How can I add another host and SID where load balance is turned on</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/8650936980081923690'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/8650936980081923690'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1317055406106#c8650936980081923690' title=''/><author><name>CJ</name><uri>http://www.blogger.com/profile/00148687911836509358</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1407591862'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-1499824733841197493</id><published>2011-07-07T11:38:03.154-07:00</published><updated>2011-07-07T11:38:03.154-07:00</updated><title type='text'>If you don&amp;#39;t mention then it will take default...</title><content type='html'>If you don&amp;#39;t mention then it will take default value.&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Satishbabu Gunukula&lt;br /&gt;http://www.oracleracexpert.com</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/1499824733841197493'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/1499824733841197493'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1310063883154#c1499824733841197493' title=''/><author><name>Satishbabu Gunukula</name><uri>http://www.blogger.com/profile/02630966486825083489</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1925255453'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-3594737789139224586</id><published>2011-07-04T05:14:37.166-07:00</published><updated>2011-07-04T05:14:37.166-07:00</updated><title type='text'>Is it mandatory to set the FAILOVER=ON in connecti...</title><content type='html'>Is it mandatory to set the FAILOVER=ON in connection string even when we use FCF ? I mean while using FCF, failover is implied so it is still necessary to specify FAILOVER=ON in the connection string.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/3594737789139224586'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/3594737789139224586'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1309781677166#c3594737789139224586' title=''/><author><name>Hussain</name><uri>http://www.blogger.com/profile/16791087731040945615</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1983230418'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-7451458010633179498</id><published>2011-07-04T05:12:19.852-07:00</published><updated>2011-07-04T05:12:19.852-07:00</updated><title type='text'></title><content type='html'>This comment has been removed by the author.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/7451458010633179498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/7451458010633179498'/><author><name>Hussain</name><uri>http://www.blogger.com/profile/16791087731040945615</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.contentRemoved' value='true'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1983230418'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-3487716977676242277</id><published>2011-01-20T09:43:08.259-08:00</published><updated>2011-01-20T09:43:08.259-08:00</updated><title type='text'>Please note that your will configure TAF at client...</title><content type='html'>Please note that your will configure TAF at client side.&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Satishbabu Gunukula&lt;br /&gt;http://www.oracleracexpert.com</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/3487716977676242277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/3487716977676242277'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1295545388259#c3487716977676242277' title=''/><author><name>Satishbabu Gunukula</name><uri>http://www.blogger.com/profile/02630966486825083489</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1925255453'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-1642508028505104721</id><published>2010-09-30T10:53:35.527-07:00</published><updated>2010-09-30T10:53:35.527-07:00</updated><title type='text'>Its  really nice  post  .. but i have  few queries...</title><content type='html'>Its  really nice  post  .. but i have  few queries  on this above  discussion .&lt;br /&gt;&lt;br /&gt;Are  we  giving the  TAF configuration parameters  under  ORACLE HOME tns file or in the  client side  tns file ?&lt;br /&gt;&lt;br /&gt;Please  correct me if am wrong .&lt;br /&gt;&lt;br /&gt;Thanks , &lt;br /&gt;Senthil</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/1642508028505104721'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/1642508028505104721'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1285869215527#c1642508028505104721' title=''/><author><name>senthil murugan</name><uri>http://www.blogger.com/profile/01010363314410900391</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-681444807'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-4536087888320484865</id><published>2010-04-27T14:53:37.329-07:00</published><updated>2010-04-27T14:53:37.329-07:00</updated><title type='text'>This is a nice post, thanks
raju</title><content type='html'>This is a nice post, thanks&lt;br /&gt;raju</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/4536087888320484865'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/4536087888320484865'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1272405217329#c4536087888320484865' title=''/><author><name>Raju</name><uri>http://www.blogger.com/profile/15413096798416602457</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='06542149390525424074'/><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1194883810'/></entry><entry><id>tag:blogger.com,1999:blog-6850817271941197798.post-7791121747610099834</id><published>2010-02-22T16:20:33.732-08:00</published><updated>2010-02-22T16:20:33.732-08:00</updated><title type='text'>nice post

Thanks
Alex</title><content type='html'>nice post&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;Alex</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/7791121747610099834'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6850817271941197798/6927886174890121557/comments/default/7791121747610099834'/><link rel='alternate' type='text/html' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html?showComment=1266884433732#c7791121747610099834' title=''/><author><name>alex</name><uri>http://www.blogger.com/profile/13203274046041083041</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='00976293026056636499'/><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://www.oracleracexpert.com/2010/01/oracle-rac-load-balancing-and-failover.html' ref='tag:blogger.com,1999:blog-6850817271941197798.post-6927886174890121557' source='http://www.blogger.com/feeds/6850817271941197798/posts/default/6927886174890121557' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1235472532'/></entry></feed>
