<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Crazy Idea</title>
	<atom:link href="http://anjanb.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://anjanb.wordpress.com</link>
	<description>Experiences of a geek-to-be</description>
	<pubDate>Sun, 20 Jul 2008 07:58:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on RFE(Req For Enhancement) java.net : Add SVN by LUfjOuon</title>
		<link>http://anjanb.wordpress.com/2006/03/04/rfereq-for-enhancement-javanet-add-svn/#comment-3567</link>
		<dc:creator>LUfjOuon</dc:creator>
		<pubDate>Wed, 18 Jun 2008 10:31:37 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2006/03/04/rfereq-for-enhancement-javanet-add-svn/#comment-3567</guid>
		<description>best
 &lt;a href="http://darzas.za.pl" rel="nofollow"&gt;best&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>best<br />
 <a href="http://darzas.za.pl" rel="nofollow">best</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is anybody in production using Java 6 by anjanb</title>
		<link>http://anjanb.wordpress.com/2007/06/09/is-anybody-in-production-using-java-6/#comment-3533</link>
		<dc:creator>anjanb</dc:creator>
		<pubDate>Thu, 20 Mar 2008 20:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2007/06/09/is-anybody-in-production-using-java-6/#comment-3533</guid>
		<description>I heard that yahoo's search team is in production using java 6 along with Hadoop, etc.

How about other guys doing enterprise stuff ?</description>
		<content:encoded><![CDATA[<p>I heard that yahoo&#8217;s search team is in production using java 6 along with Hadoop, etc.</p>
<p>How about other guys doing enterprise stuff ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java 6(Mustang) upgrade path hurdles ? by dorette</title>
		<link>http://anjanb.wordpress.com/2006/12/21/java-6-upgrade-path-hurdles/#comment-3081</link>
		<dc:creator>dorette</dc:creator>
		<pubDate>Mon, 22 Oct 2007 15:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2006/12/21/java-6-upgrade-path-hurdles/#comment-3081</guid>
		<description>http://travelnursingdirect.com/</description>
		<content:encoded><![CDATA[<p><a href="http://travelnursingdirect.com/" rel="nofollow">http://travelnursingdirect.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jdbc : Why doesn&#8217;t Oracle&#8217;s driver support READ_UNCOMMITTED ? by Dr. Java</title>
		<link>http://anjanb.wordpress.com/2007/09/07/jdbc-why-doesnt-oracles-driver-support-read_uncommitted/#comment-2990</link>
		<dc:creator>Dr. Java</dc:creator>
		<pubDate>Wed, 03 Oct 2007 11:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2007/09/07/jdbc-why-doesnt-oracles-driver-support-read_uncommitted/#comment-2990</guid>
		<description>For your convenience, Tom's answer can be found &lt;a href="http://www.oracle.com/technology/oramag/oracle/05-nov/o65asktom.html" rel="nofollow"&gt;on his site.&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>For your convenience, Tom&#8217;s answer can be found <a href="http://www.oracle.com/technology/oramag/oracle/05-nov/o65asktom.html" rel="nofollow">on his site.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jdbc : Why doesn&#8217;t Oracle&#8217;s driver support READ_UNCOMMITTED ? by peter veentjer</title>
		<link>http://anjanb.wordpress.com/2007/09/07/jdbc-why-doesnt-oracles-driver-support-read_uncommitted/#comment-2781</link>
		<dc:creator>peter veentjer</dc:creator>
		<pubDate>Sat, 08 Sep 2007 15:19:34 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2007/09/07/jdbc-why-doesnt-oracles-driver-support-read_uncommitted/#comment-2781</guid>
		<description>Databases that use Multiversion concurrency control (oracle, postgresql, mysql&#38;innodb, firebird etc) don't need dirty reads. A dirty read is useful if you want to do a non blocking read, but Multiversion Concurrency Control (MVCC) database have a different solution. Instead of reading uncommitted data, a previous committed version of a record is used (hence the name multiversion). This approach is much saver because you can't read uncommitted data (so data that never made it into the db) or data that is not valid (data could be written before its constraints are checked).

That is why a READ_UNCOMMITTED isolation level is ugraded to READ_COMMITTED.

A similar explanation can be used for REPEATABLE_READS. The SERIALIZED isolation level also prevents unrepeatable reads from happening and the serialized isolation level is quite easily realized in oracle (also based on the multiversion mechanism and optimistic locking at the end of serialized transaction commit). That is why REPEATABLE_READ is automatically upgraded to SERIALIZED.</description>
		<content:encoded><![CDATA[<p>Databases that use Multiversion concurrency control (oracle, postgresql, mysql&amp;innodb, firebird etc) don&#8217;t need dirty reads. A dirty read is useful if you want to do a non blocking read, but Multiversion Concurrency Control (MVCC) database have a different solution. Instead of reading uncommitted data, a previous committed version of a record is used (hence the name multiversion). This approach is much saver because you can&#8217;t read uncommitted data (so data that never made it into the db) or data that is not valid (data could be written before its constraints are checked).</p>
<p>That is why a READ_UNCOMMITTED isolation level is ugraded to READ_COMMITTED.</p>
<p>A similar explanation can be used for REPEATABLE_READS. The SERIALIZED isolation level also prevents unrepeatable reads from happening and the serialized isolation level is quite easily realized in oracle (also based on the multiversion mechanism and optimistic locking at the end of serialized transaction commit). That is why REPEATABLE_READ is automatically upgraded to SERIALIZED.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jdbc : Why doesn&#8217;t Oracle&#8217;s driver support READ_UNCOMMITTED ? by anjanb</title>
		<link>http://anjanb.wordpress.com/2007/09/07/jdbc-why-doesnt-oracles-driver-support-read_uncommitted/#comment-2772</link>
		<dc:creator>anjanb</dc:creator>
		<pubDate>Sat, 08 Sep 2007 00:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2007/09/07/jdbc-why-doesnt-oracles-driver-support-read_uncommitted/#comment-2772</guid>
		<description>Hi Morgan,

 Thank you.

 Guess it's time to refresh my Oracle fundas by reading the WROX PRESS "EXPERT ONE-ON-ONE ORACLE". I'm sure Tom would give me a hint as to why they do it.

Do, do other DBs(like MS-SQL, MySQL, DB2) allow Dirty Reads ? How about Java DB, HSQL, etc ?

Thanks again,

BR,
~A</description>
		<content:encoded><![CDATA[<p>Hi Morgan,</p>
<p> Thank you.</p>
<p> Guess it&#8217;s time to refresh my Oracle fundas by reading the WROX PRESS &#8220;EXPERT ONE-ON-ONE ORACLE&#8221;. I&#8217;m sure Tom would give me a hint as to why they do it.</p>
<p>Do, do other DBs(like MS-SQL, MySQL, DB2) allow Dirty Reads ? How about Java DB, HSQL, etc ?</p>
<p>Thanks again,</p>
<p>BR,<br />
~A</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jdbc : Why doesn&#8217;t Oracle&#8217;s driver support READ_UNCOMMITTED ? by Morgan</title>
		<link>http://anjanb.wordpress.com/2007/09/07/jdbc-why-doesnt-oracles-driver-support-read_uncommitted/#comment-2770</link>
		<dc:creator>Morgan</dc:creator>
		<pubDate>Fri, 07 Sep 2007 21:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2007/09/07/jdbc-why-doesnt-oracles-driver-support-read_uncommitted/#comment-2770</guid>
		<description>Because transaction isolation levels READ_UNCOMMITTED and REPEATABLE_READ don't exist in Oracle databases by design.</description>
		<content:encoded><![CDATA[<p>Because transaction isolation levels READ_UNCOMMITTED and REPEATABLE_READ don&#8217;t exist in Oracle databases by design.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on openJDK/Java 7 : RFE by David Herron</title>
		<link>http://anjanb.wordpress.com/2007/08/30/openjdkjava-7-rfe/#comment-2652</link>
		<dc:creator>David Herron</dc:creator>
		<pubDate>Fri, 31 Aug 2007 00:02:26 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2007/08/30/openjdkjava-7-rfe/#comment-2652</guid>
		<description>You should bring this suggestion to one of &lt;a href="http://mail.openjdk.java.net/" rel="nofollow"&gt;the OpenJDK mailing lists&lt;/a&gt;, look at the &lt;a href="http://openjdk.java.net/contribute/" rel="nofollow"&gt;contribution process&lt;/a&gt; to see the outline of how to proceed.  This probably wouldn't require a full JSR thingy.

There are various management interfaces like &lt;a href="http://java.sun.com/javase/6/docs/technotes/guides/attach/index.html" rel="nofollow"&gt;Attach API&lt;/a&gt;, &lt;a href="http://java.sun.com/javase/6/docs/technotes/guides/jvmti/index.html" rel="nofollow"&gt;JVMTI&lt;/a&gt;, and &lt;a href="http://java.sun.com/javase/6/docs/technotes/guides/management/index.html" rel="nofollow"&gt;Monitoring and Management&lt;/a&gt; which provide similar features.</description>
		<content:encoded><![CDATA[<p>You should bring this suggestion to one of <a href="http://mail.openjdk.java.net/" rel="nofollow">the OpenJDK mailing lists</a>, look at the <a href="http://openjdk.java.net/contribute/" rel="nofollow">contribution process</a> to see the outline of how to proceed.  This probably wouldn&#8217;t require a full JSR thingy.</p>
<p>There are various management interfaces like <a href="http://java.sun.com/javase/6/docs/technotes/guides/attach/index.html" rel="nofollow">Attach API</a>, <a href="http://java.sun.com/javase/6/docs/technotes/guides/jvmti/index.html" rel="nofollow">JVMTI</a>, and <a href="http://java.sun.com/javase/6/docs/technotes/guides/management/index.html" rel="nofollow">Monitoring and Management</a> which provide similar features.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Swing Vs VB 4.0 by anjanb</title>
		<link>http://anjanb.wordpress.com/2007/07/17/java-swing-vs-vb-40/#comment-2009</link>
		<dc:creator>anjanb</dc:creator>
		<pubDate>Wed, 18 Jul 2007 19:33:47 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2007/07/17/java-swing-vs-vb-40/#comment-2009</guid>
		<description>Hi Arun,

  Thanks for stopping by.

  After posting it, I briefly thought that someone could misunderstand where I was coming from. 

  Let me clarify. What I mean is this "Although Java and Swing have improved a lot in the last few years to be compelling considerations for desktop apps, developer support for building such GUIs was not quite there. With Netbeans/Matisse and a few open source libraries/toolkits/frameworks, Java can be a good tool to develop such apps. I know that Sun employees recently came out with a new book called "Filthy Rich Java apps" or something like that.

So, I know that one can build such apps TODAY, thousands of VB developers have been able to do that since the last 10 years. I emphasis was ON developer tools NOT the runtime capabilities of the platform.

BR,
~A</description>
		<content:encoded><![CDATA[<p>Hi Arun,</p>
<p>  Thanks for stopping by.</p>
<p>  After posting it, I briefly thought that someone could misunderstand where I was coming from. </p>
<p>  Let me clarify. What I mean is this &#8220;Although Java and Swing have improved a lot in the last few years to be compelling considerations for desktop apps, developer support for building such GUIs was not quite there. With Netbeans/Matisse and a few open source libraries/toolkits/frameworks, Java can be a good tool to develop such apps. I know that Sun employees recently came out with a new book called &#8220;Filthy Rich Java apps&#8221; or something like that.</p>
<p>So, I know that one can build such apps TODAY, thousands of VB developers have been able to do that since the last 10 years. I emphasis was ON developer tools NOT the runtime capabilities of the platform.</p>
<p>BR,<br />
~A</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Swing Vs VB 4.0 by Arun Kumar</title>
		<link>http://anjanb.wordpress.com/2007/07/17/java-swing-vs-vb-40/#comment-1992</link>
		<dc:creator>Arun Kumar</dc:creator>
		<pubDate>Wed, 18 Jul 2007 01:16:37 +0000</pubDate>
		<guid isPermaLink="false">http://anjanb.wordpress.com/2007/07/17/java-swing-vs-vb-40/#comment-1992</guid>
		<description>I would have to disagree entirely with your opening line ("Java’s weak point has been its Rich client programming capabilities")!  Check out Kerika (www.kerika.com), which is written entirely in Java and provides a very rich client indeed.  And check out http://www.kerika.com/2007/06/why-we-chose-java.html on why we chose to build Kerika in Java.</description>
		<content:encoded><![CDATA[<p>I would have to disagree entirely with your opening line (&#8221;Java’s weak point has been its Rich client programming capabilities&#8221;)!  Check out Kerika (www.kerika.com), which is written entirely in Java and provides a very rich client indeed.  And check out <a href="http://www.kerika.com/2007/06/why-we-chose-java.html" rel="nofollow">http://www.kerika.com/2007/06/why-we-chose-java.html</a> on why we chose to build Kerika in Java.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
