<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BigDataOnCloud + FreeDB2 &#187; MySQL</title>
	<atom:link href="http://freedb2.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://freedb2.com</link>
	<description>Big Data, Hadoop, free databases and a whole lot of Cloud Computing</description>
	<lastBuildDate>Thu, 10 May 2012 22:49:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Comparing Free Databases: Oracle XE vs IBM DB2 Express-C 2 years later</title>
		<link>http://freedb2.com/2010/10/05/comparing-free-databases-oracle-xe-vs-ibm-db2-express-c-2-years-later/</link>
		<comments>http://freedb2.com/2010/10/05/comparing-free-databases-oracle-xe-vs-ibm-db2-express-c-2-years-later/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 15:00:45 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[DB2 Express-C]]></category>
		<category><![CDATA[Oracle XE]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=1351</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://freedb2.com/2010/10/05/comparing-free-databases-oracle-xe-vs-ibm-db2-express-c-2-years-later/' addthis:title='Comparing Free Databases: Oracle XE vs IBM DB2 Express-C 2 years later '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>With Oracle's acquisition of MySQL it is quite clear that Oracle XE is at the end of its road. DB2 Express-C on the other hand has been continuously enhanced with cutting edge features. And unlike Oracle XE which takes you to a dead end, DB2 Express-C provides a very clear growth path that wil take your application where it needs to be no matter how big its needs to be and how fast it needs to get there. I believe that with MySQL replacing of Oracle XE at the low end of the portfolio, it makes more sense to compare DB2 Express-C to MySQL than Oracle XE. I think I will do just that in one of my future posts. I will say, however, that with today's price reduction for DB2 Express, MySQL is at a big disadvantage. [...] <p><a href="http://freedb2.com/2010/10/05/comparing-free-databases-oracle-xe-vs-ibm-db2-express-c-2-years-later/">Read ...</a></p><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://freedb2.com/2010/10/05/comparing-free-databases-oracle-xe-vs-ibm-db2-express-c-2-years-later/' addthis:title='Comparing Free Databases: Oracle XE vs IBM DB2 Express-C 2 years later ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
		<wfw:commentRss>http://freedb2.com/2010/10/05/comparing-free-databases-oracle-xe-vs-ibm-db2-express-c-2-years-later/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Top 3 ways to return TOP 10 rows by an SQL query</title>
		<link>http://freedb2.com/2010/07/14/top-3-ways-to-return-top-10-rows-by-an-sql-query/</link>
		<comments>http://freedb2.com/2010/07/14/top-3-ways-to-return-top-10-rows-by-an-sql-query/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 14:01:03 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=1273</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://freedb2.com/2010/07/14/top-3-ways-to-return-top-10-rows-by-an-sql-query/' addthis:title='Top 3 ways to return TOP 10 rows by an SQL query '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>Limiting amount of data returned by a database to an application is probably the easiest and the most effective way to improve performance your application. DB2 provides 3 ways of accomplishing this. You can use DB2 SQL FETCH FIRST n ROWS syntax. You can use SQL syntax of another DBMS like MySQL, Oracle or Sybase, or you can do this in a database independent way by using the capabilities provided by the database API you are using in your application code. [...] <p><a href="http://freedb2.com/2010/07/14/top-3-ways-to-return-top-10-rows-by-an-sql-query/">Read ...</a></p><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://freedb2.com/2010/07/14/top-3-ways-to-return-top-10-rows-by-an-sql-query/' addthis:title='Top 3 ways to return TOP 10 rows by an SQL query ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
		<wfw:commentRss>http://freedb2.com/2010/07/14/top-3-ways-to-return-top-10-rows-by-an-sql-query/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Will Oracle lay off more MySQL people?</title>
		<link>http://freedb2.com/2010/06/10/will-oracle-lay-off-more-mysql-people/</link>
		<comments>http://freedb2.com/2010/06/10/will-oracle-lay-off-more-mysql-people/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 00:35:34 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Random thoughts]]></category>
		<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=1265</guid>
		<description><![CDATA[<p>This really interesting article just crossed my desk. It looks like Oracle&#8217;s latest SEC filing is a pretty good indication of massive layoffs still coming as a result of the SUN acquisition. There is no way to tell which part of the business the layoffs will be in but I wonder if MySQL is affected. MySQL is not exactly a cash cow for Oracle and the business seems to be drying up as many loyal MySQL customers are heading for alternative sources of support for MySQL. It is not really cool or fiscally responsible to get support for MySQL from [...] <p><a href="http://freedb2.com/2010/06/10/will-oracle-lay-off-more-mysql-people/">Read ...</a></p>]]></description>
		<wfw:commentRss>http://freedb2.com/2010/06/10/will-oracle-lay-off-more-mysql-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Conference: the state of the MySQL community</title>
		<link>http://freedb2.com/2010/04/18/mysql-conference-the-state-of-the-mysql-community/</link>
		<comments>http://freedb2.com/2010/04/18/mysql-conference-the-state-of-the-mysql-community/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 07:14:42 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Random thoughts]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=1184</guid>
		<description><![CDATA[<p>This week I had an opportunity to spend some time at the annual MySQL conference in Santa Clara California. This is the second time I attended this conference. Last time I was at the MySQL conference was in the Spring of 2008 and the big news then was SUN acquisition of MySQL for a cool billion $s. This time it was Oracle swallowing SUN. So, when I was ready to go I was really curious to see how the conference would have changed and what the mood of the community would be.</p> <p>Here are my highly subjective impressions. First, I [...] <p><a href="http://freedb2.com/2010/04/18/mysql-conference-the-state-of-the-mysql-community/">Read ...</a></p>]]></description>
		<wfw:commentRss>http://freedb2.com/2010/04/18/mysql-conference-the-state-of-the-mysql-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jonathan Schwartz resigns as SUN CEO with a tweet</title>
		<link>http://freedb2.com/2010/02/05/jonathan-schwartz-resigns-a-sun-ceo-with-a-tweet/</link>
		<comments>http://freedb2.com/2010/02/05/jonathan-schwartz-resigns-a-sun-ceo-with-a-tweet/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 17:03:39 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Data Studio]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=1108</guid>
		<description><![CDATA[<p>&#8220;Today&#8217;s my last day at Sun. I&#8217;ll miss it. Seems only fitting to end on a #haiku. Financial crisis/Stalled too many customers/CEO no more&#8221;</p> <p class="wp-caption-text">Jonathan Schwartz - Best Leader no more</p> <p>These are the parting words of Jonathan Schwartz on Twitter. No multi-page letter like Scott McNealy did when he resined this post.</p> <p>I am constantly amazed at just how much the social media phenomenon has changed the corporate attitude in just a couple of years. I see it reflected greatly in our own efforts to get everyone to partake in the goodness that is DB2. We have embraced social [...] <p><a href="http://freedb2.com/2010/02/05/jonathan-schwartz-resigns-a-sun-ceo-with-a-tweet/">Read ...</a></p>]]></description>
		<wfw:commentRss>http://freedb2.com/2010/02/05/jonathan-schwartz-resigns-a-sun-ceo-with-a-tweet/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>All the IT that a small business or a branch office needs</title>
		<link>http://freedb2.com/2010/01/15/all-the-it-that-a-small-business-or-a-branch-office-needs/</link>
		<comments>http://freedb2.com/2010/01/15/all-the-it-that-a-small-business-or-a-branch-office-needs/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 23:50:17 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[DB2 Express-C]]></category>
		<category><![CDATA[Lotus Foundations]]></category>
		<category><![CDATA[SMB]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=1072</guid>
		<description><![CDATA[<p>In the past year we have spent a lot of effort putting DB2 on the cloud and we achieved absolutely fantastic results. Db2 has proven to be a hit on both the Amazon cloud, on RightScale and on the IBM Developer Cloud. But all this focus on running applications on the rented IT infrastructure in the cloud does not mean we don&#8217;t care about people who want to have their own IT equipment. The free DB2 Express-C is a good fit for small and medium business and an even better fit for remote offices of very large enterprises. But, let&#8217;s [...] <p><a href="http://freedb2.com/2010/01/15/all-the-it-that-a-small-business-or-a-branch-office-needs/">Read ...</a></p>]]></description>
		<wfw:commentRss>http://freedb2.com/2010/01/15/all-the-it-that-a-small-business-or-a-branch-office-needs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free DB2 vs Microsoft SQL Server and Talking up Cloud on the DB2Night Show</title>
		<link>http://freedb2.com/2009/12/02/free-db2-vs-microsoft-sql-server-and-talking-up-cloud-on-db2night-show/</link>
		<comments>http://freedb2.com/2009/12/02/free-db2-vs-microsoft-sql-server-and-talking-up-cloud-on-db2night-show/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 06:27:45 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[DB2 Express-C]]></category>
		<category><![CDATA[Microsoft SQLServer Express]]></category>
		<category><![CDATA[Oracle XE]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=1041</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://freedb2.com/2009/12/02/free-db2-vs-microsoft-sql-server-and-talking-up-cloud-on-db2night-show/' addthis:title='Free DB2 vs Microsoft SQL Server and Talking up Cloud on the DB2Night Show '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>The next DB2Night Show episode on Friday December 4 (10am Central) will be a no holds barred comparison of the IBM DB2 Express-C and Microsoft SQL Server Express and we will throw in Oracle XE for good measure. We will also talk about Cloud Computing and its impact on database professionals. This is a must see episode so register now. [...] <p><a href="http://freedb2.com/2009/12/02/free-db2-vs-microsoft-sql-server-and-talking-up-cloud-on-db2night-show/">Read ...</a></p><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://freedb2.com/2009/12/02/free-db2-vs-microsoft-sql-server-and-talking-up-cloud-on-db2night-show/' addthis:title='Free DB2 vs Microsoft SQL Server and Talking up Cloud on the DB2Night Show ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
		<wfw:commentRss>http://freedb2.com/2009/12/02/free-db2-vs-microsoft-sql-server-and-talking-up-cloud-on-db2night-show/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ellison: Oracle does not compete with MySQL &#8230; MySQL disagrees</title>
		<link>http://freedb2.com/2009/09/22/ellison-oracle-does-not-compete-with-mysql-mysql-disagrees/</link>
		<comments>http://freedb2.com/2009/09/22/ellison-oracle-does-not-compete-with-mysql-mysql-disagrees/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 18:20:50 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=865</guid>
		<description><![CDATA[<p>Larry Ellison is always a master of spin. Right now he is applying his considerable skill to hasten the completion of the acquisition of SUN. SUN, according to Larry, is bleeding US$100 million a month. If European Commission continues for probe his intentions around MySQL he stands to loose whatever is left of SUN. So, Larry Ellison does what Larry Ellison does best i.e. make outrageous statements in the press. His latest is &#8220;Oracle does not compete with MySQL&#8221;.  I think Larry Ellison and European Union really need to see what MySQL website says:</p> <p class="wp-caption-text">MySQL Enterprise Unlimited directly competes [...] <p><a href="http://freedb2.com/2009/09/22/ellison-oracle-does-not-compete-with-mysql-mysql-disagrees/">Read ...</a></p>]]></description>
		<wfw:commentRss>http://freedb2.com/2009/09/22/ellison-oracle-does-not-compete-with-mysql-mysql-disagrees/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Oracle attempts to calm SUN customers makes them more nervous</title>
		<link>http://freedb2.com/2009/09/16/oracle-attempts-to-calm-sun-customers-makes-them-more-nervous/</link>
		<comments>http://freedb2.com/2009/09/16/oracle-attempts-to-calm-sun-customers-makes-them-more-nervous/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 18:53:51 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Random thoughts]]></category>
		<category><![CDATA[exadata]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[SPARC]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=829</guid>
		<description><![CDATA[<p>What happens when a large software company like Oracle acquires a struggling hardware company that has passed its prime like SUN? SUN customers who were already very concerned about the viability of their supplier get even more nervous. They put hardware acquisitions on hold and start talking to competitors. The sales of the struggling hardware maker take a plunge as in 30.6% drop of revenue in the latest quarter. What does Oracle do? Tries to reassure SUN hardware customers with advertisements like this:</p> <p class="wp-caption-text">Oracle ad for SUN customers</p> <p>Looks like a great tactic; Oracle marketing has always been a [...] <p><a href="http://freedb2.com/2009/09/16/oracle-attempts-to-calm-sun-customers-makes-them-more-nervous/">Read ...</a></p>]]></description>
		<wfw:commentRss>http://freedb2.com/2009/09/16/oracle-attempts-to-calm-sun-customers-makes-them-more-nervous/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>EU thinks Oracle is out to kill MySQL</title>
		<link>http://freedb2.com/2009/09/10/eu-thinks-oracle-is-out-to-kill-mysql/</link>
		<comments>http://freedb2.com/2009/09/10/eu-thinks-oracle-is-out-to-kill-mysql/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 21:04:24 +0000</pubDate>
		<dc:creator>Leon Katsnelson</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[DB2 Express-C]]></category>
		<category><![CDATA[Oracle XE]]></category>

		<guid isPermaLink="false">http://freedb2.com/?p=741</guid>
		<description><![CDATA[<p>When I opined that Oracle can not be trusted to keep MySQL going there were some in the MySQL and Oracle community who accused me of spreading FUD (Fear, Uncertainty and Doubt). I agree that there is indeed a lot of Fear, Uncertainty and Doubt around MySQL these days. However, I don&#8217;t think that this humble blog is the reason. Bottom line is that since the acquisition was first announced Oracle has said nothing about its plans for MySQL. Oracle certainly said plenty about its plans for SUN hardware, its plans for Java, even its plans for Solaris. Larry Ellison [...] <p><a href="http://freedb2.com/2009/09/10/eu-thinks-oracle-is-out-to-kill-mysql/">Read ...</a></p>]]></description>
		<wfw:commentRss>http://freedb2.com/2009/09/10/eu-thinks-oracle-is-out-to-kill-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

