<?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>Colin Charles Agenda &#187; Databases</title>
	<atom:link href="http://www.bytebot.net/blog/archives/category/databases/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bytebot.net/blog</link>
	<description>A permanent record for what's interesting today - this is my live journal</description>
	<lastBuildDate>Sun, 07 Mar 2010 15:59:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom:link rel='hub' href='http://www.bytebot.net/blog/?pushpress=hub'/>
<cloud domain='www.bytebot.net' port='80' path='/blog/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Abusing MySQL (&amp; thoughts on NoSQL)</title>
		<link>http://www.bytebot.net/blog/archives/2010/03/07/abusing-mysql-thoughts-on-nosql</link>
		<comments>http://www.bytebot.net/blog/archives/2010/03/07/abusing-mysql-thoughts-on-nosql#comments</comments>
		<pubDate>Sun, 07 Mar 2010 15:59:50 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[FEDERATED]]></category>
		<category><![CDATA[FederatedX]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[OpenDNS]]></category>
		<category><![CDATA[storage engine]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1720</guid>
		<description><![CDATA[The NoSQL/relational database debate has been going on for quite some time. MariaDB, like MySQL is relational. And if you read these series of blog posts, you&#8217;ll realise that if you use MySQL correctly, you can achieve quite a lot.

It all starts with Kellan Elliott-McCrea with his introductory post on Using, Abusing and Scaling MySQL [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/03/03/mysql-ecosystem-complementary-talks-at-the-conference' rel='bookmark' title='Permanent Link: MySQL Ecosystem &#8211; complementary talks at the conference?'>MySQL Ecosystem &#8211; complementary talks at the conference?</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/02/05/mariadb-5-1-42-released' rel='bookmark' title='Permanent Link: MariaDB 5.1.42 released!'>MariaDB 5.1.42 released!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2008/07/14/mysql-5126-rc-released-and-developer-resources-thoughts' rel='bookmark' title='Permanent Link: MySQL 5.1.26-rc released, and developer resources thoughts'>MySQL 5.1.26-rc released, and developer resources thoughts</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The NoSQL/relational database debate has been going on for quite some time. <a href="http://askmonty.org/wiki/index.php/MariaDB:Download">MariaDB</a>, like MySQL is relational. And if you read these series of blog posts, you&#8217;ll realise that if you use MySQL correctly, you can achieve quite a lot.</p>
<ol>
<li>It all starts with <a href="http://twitter.com/kellan">Kellan Elliott-McCrea</a> with his introductory post on <a href="http://code.flickr.com/blog/2010/02/08/using-abusing-and-scaling-mysql-at-flickr/">Using, Abusing and Scaling MySQL at Flickr</a>. Follow the entire <a href="http://code.flickr.com/blog/tag/using-and-abusing-mysql/">series</a>.</li>
<li>He starts of the series with <a href="http://code.flickr.com/blog/2010/02/08/ticket-servers-distributed-unique-primary-keys-on-the-cheap/">Ticket Servers: Distributed Unique Primary Keys on the Cheap</a>. Flickr scales using shards, and ticket servers give unique integers to serve as PKs.</li>
<li>Richard Crowley talks about <a href="http://rcrowley.org/articles/opendns-mysql-abuses.html">OpenDNS MySQL abuses</a>. Nothing too out of the ordinary, but it shows MySQL getting the job done.</li>
<li>Mikhail Panchenko talks about using <a href="http://mihasya.com/blog/abusing-mysql-the-federated-engine/">The Federated engine</a> for his series.</li>
</ol>
<p>If you&#8217;re using the Federated engine, know that <a href="http://dev.mysql.com/doc/refman/5.0/en/federated-storage-engine.html">MySQL disables FEDERATED by default</a>. In <a href="http://askmonty.org/wiki/index.php/MariaDB:Download">MariaDB 5.1.42</a>, you get <a href="http://askmonty.org/wiki/index.php/Manual:FederatedX_storage_engine">FederatedX</a>, which is a maintained fork of FEDERATED, by the author himself! Bugs are fixed, and this is a supported engine, so if you&#8217;re using the FEDERATED engine, it might be wise to try out FederatedX.</p>
<p>I&#8217;d also like to bring to attention, an interesting essay by Dennis Forbes: <a href="http://www.yafla.com/dforbes/Getting_Real_about_NoSQL_and_the_SQL_Isnt_Scalable_Lie/">Getting Real about NoSQL and the SQL-Isn&#8217;t-Scalable Lie</a>. <a href="http://monty-says.blogspot.com/">Monty says</a>: <em>&#8220;NoSQL is for very smart people who need a very sharp knife. People who are not capable of mastering SQL should not even attempt to try out NoSQL.&#8221;</em></p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/03/03/mysql-ecosystem-complementary-talks-at-the-conference' rel='bookmark' title='Permanent Link: MySQL Ecosystem &#8211; complementary talks at the conference?'>MySQL Ecosystem &#8211; complementary talks at the conference?</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/02/05/mariadb-5-1-42-released' rel='bookmark' title='Permanent Link: MariaDB 5.1.42 released!'>MariaDB 5.1.42 released!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2008/07/14/mysql-5126-rc-released-and-developer-resources-thoughts' rel='bookmark' title='Permanent Link: MySQL 5.1.26-rc released, and developer resources thoughts'>MySQL 5.1.26-rc released, and developer resources thoughts</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/03/07/abusing-mysql-thoughts-on-nosql/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;</title>
		<link>http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials</link>
		<comments>http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials#comments</comments>
		<pubDate>Sat, 06 Mar 2010 18:44:48 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql conference & expo]]></category>
		<category><![CDATA[mysql conference & expo 2010]]></category>
		<category><![CDATA[mysqlce2010]]></category>
		<category><![CDATA[Ronald Bradford]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1711</guid>
		<description><![CDATA[A few notes about the MySQL Conference &#038; Expo 2010.

Check out the schedule. Its more packed than you can imagine. You&#8217;re going to want to be in many places at once, by the looks of it.
O&#8217;Reilly Radar has an interview with Ronald Bradford: MySQL migration and risk management. You&#8217;ll get a teaser as to Ronald&#8217;s [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/03/03/mysql-ecosystem-complementary-talks-at-the-conference' rel='bookmark' title='Permanent Link: MySQL Ecosystem &#8211; complementary talks at the conference?'>MySQL Ecosystem &#8211; complementary talks at the conference?</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register' rel='bookmark' title='Permanent Link: MySQL Conference Update: Grid is up, go promote and register!'>MySQL Conference Update: Grid is up, go promote and register!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/12/29/oreilly-mysql-conference-2010' rel='bookmark' title='Permanent Link: o&#8217;reilly mysql conference &#038; expo 2010'>o&#8217;reilly mysql conference &#038; expo 2010</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A few notes about the <a href="http://en.oreilly.com/mysql2010/">MySQL Conference &#038; Expo 2010</a>.</p>
<ol>
<li>Check out the <a href="http://en.oreilly.com/mysql2010/">schedule</a>. Its more packed than you can imagine. You&#8217;re going to want to be in many places at once, by the looks of it.</li>
<li>O&#8217;Reilly Radar has an interview with <a href="http://ronaldbradford.com/">Ronald Bradford</a>: <a href="http://radar.oreilly.com/2010/03/oracle-to-mysql.html">MySQL migration and risk management</a>. You&#8217;ll get a teaser as to Ronald&#8217;s thoughts, and a bit of information about his two talks at the conference on migrating from Oracle to MySQL. He has swanky titles for them: <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/13263">Ignition</a> and <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/13264">Liftoff</a>! Expect a lot of technical meat in both these talks&#8230;</li>
<li>The idea of &#8220;mini-tutorials&#8221;. Some talks take longer than 45 minutes to deliver, so why not have 90 minute sessions? Ronald&#8217;s is a good example of this, though it&#8217;s spread over 2 days. We have more:
<ul>
<li>Don Beesing and John Powell talking on <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/13455">Where it&#8217;s at: GeoSpatial MySQL Part 1</a> and <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/14288">Part 2</a>.</li>
<li>Tobias Asplund and Konstantin Osipov will talk about everything <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/14199">stored procedures</a> in their <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/14287">2 part</a> series.</li>
<li>Peter Zaitsev will speak about <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/12578">InnoDB Architecture and Performance Optimization</a> and the complementary <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/14243">Part 2</a>.</li>
<li>And if you&#8217;re interested in Gearman, there&#8217;s a spread over the three days, about it! Join Giuseppe Maxia and Eric Day to run you through: <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/13309">Getting Started with Gearman for MySQL</a>, followed by <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/13310">Boosting Database Performance with Gearman</a> and finally <a href="http://en.oreilly.com/mysql2010/public/schedule/detail/13311">Gearman MySQL Hacks, or Everything You Wanted to Do with a Database Server and You Never Dared to Hope</a>.</li>
</ul>
</li>
</ol>
<p>So, have you <a href="https://en.oreilly.com/mysql2010/public/register">registered</a> yet? Early bird registrations ends <a href="https://en.oreilly.com/mysql2010/public/register">March 15 2010</a>.</p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/03/03/mysql-ecosystem-complementary-talks-at-the-conference' rel='bookmark' title='Permanent Link: MySQL Ecosystem &#8211; complementary talks at the conference?'>MySQL Ecosystem &#8211; complementary talks at the conference?</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register' rel='bookmark' title='Permanent Link: MySQL Conference Update: Grid is up, go promote and register!'>MySQL Conference Update: Grid is up, go promote and register!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/12/29/oreilly-mysql-conference-2010' rel='bookmark' title='Permanent Link: o&#8217;reilly mysql conference &#038; expo 2010'>o&#8217;reilly mysql conference &#038; expo 2010</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iceland: An experience</title>
		<link>http://www.bytebot.net/blog/archives/2010/03/04/iceland-an-experience</link>
		<comments>http://www.bytebot.net/blog/archives/2010/03/04/iceland-an-experience#comments</comments>
		<pubDate>Thu, 04 Mar 2010 19:56:26 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[iceland]]></category>
		<category><![CDATA[monty program]]></category>
		<category><![CDATA[reykjavik]]></category>
		<category><![CDATA[shark]]></category>
		<category><![CDATA[whale]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1708</guid>
		<description><![CDATA[We planned for a company meeting to be in Iceland, with just about a month&#8217;s notice. You can do that, when you&#8217;re a fairly small company. Having been back from London during the winter, where it was snowing in the New Year, I was not exactly jumping high to visit Iceland. Ice? Gasp.
 It was [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2009/04/15/cathay-pacific-economy-seats-fail' rel='bookmark' title='Permanent Link: Cathay Pacific Economy: seats = fail'>Cathay Pacific Economy: seats = fail</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2007/11/19/malaysian-airlines-have-had-service-improvements' rel='bookmark' title='Permanent Link: Malaysian Airlines have had service improvements'>Malaysian Airlines have had service improvements</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/01/05/the-apple-store-malaysia-phone-experience' rel='bookmark' title='Permanent Link: The Apple Store Malaysia Phone Experience'>The Apple Store Malaysia Phone Experience</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>We planned for a <a href="http://askmonty.org/wiki/index.php/Main_Page">company meeting</a> to be in Iceland, with just about a month&#8217;s notice. You can do that, when you&#8217;re a fairly small company. Having been back from London during the winter, where it was snowing in the New Year, I was not exactly jumping high to visit <i>Iceland</i>. Ice? Gasp.</p>
<p><a href="http://www.flickr.com/photos/byte/4402706168/" title="Reykjavik, Iceland by byte, on Flickr"><img src="http://farm5.static.flickr.com/4068/4402706168_22867fc53c_m.jpg" width="240" height="180" alt="Reykjavik, Iceland" align="left" hspace="5" vspace="5" /></a> It was not exactly easy to get to Iceland: KUL &#8211; SIN &#8211; FRA &#8211; CPH &#8211; KEF. Five countries, in a little over a day (would have been about it, had it not been due to a delayed flight from Copenhagen &#8212; seemed that the plane was snowed in from Iceland). Upon getting my boarding pass for the last leg, I was asked by the SAS ticketing agent if I&#8217;d like a window seat &#8211; I naturally replied aisle, and he confirmed my choice with me, as if shocked. Then I realised, there might be some interesting sights from the plane, so I took his advice and got a window seat. Icelandair is nice! (in comparison to Lufthansa). Odd plane though &#8211; they run Windows (noticed from the mouse pointer), but the entire entertainment system is touchscreen based. Their magazine made a special mention that their playing cards were mentioned in Monocle&#8217;s Travel Top Fifty 2009/2010; they were for sale for 3 euros. I figured I&#8217;ll pick it up on the way back. Anyway, the view from the window seat? Completely amazing.</p>
<p>I arrived for the meeting on Friday, so missed a bit of the first day. It was pretty much in time for dinner, when I arrived at the Radisson SAS 1919 (important detail &#8211; there are 2 Radisson hotels here), so we headed to a restaurant called the Viking Village. Here we tried shark, had some nice lamb, and tried <i><a href="http://en.wikipedia.org/wiki/Skyr">skyr</a></i>, which they seemingly adulterated with something rather sweet along the way! <a href="http://www.flickr.com/photos/byte/4401976859/" title="Whale meat"><img src="http://farm3.static.flickr.com/2757/4401976859_cf0da9c1c4_m.jpg" width="240" height="180" alt="Whale meat" align="right" hspace="5" vspace="5" /></a></p>
<p>The next day, we had dinner at <a href="http://www.orange.is/">Orange</a>. Before we stumbled upon it, we somehow found that on the 2nd floor, there was also the Malaysian Embassy. Very interesting :) Orange was beautiful, and Monty got us a tasting platter &#8211; something like a 5 course dinner, matched with appropriate wines, for each course! We ate like kings. It started with <a href="http://www.flickr.com/photos/byte/4402738186/in/set-72157623543521004/">langoustines</a>, then we had <a href="http://www.flickr.com/photos/byte/4401976859/in/set-72157623543521004/">whale</a> (which I think tastes a little like beef, maybe a little rare beef?). After that we had <a href="http://www.flickr.com/photos/byte/4401983839/in/set-72157623543521004/">beef</a>, and we got some <a href="http://www.flickr.com/photos/byte/4402749594/in/set-72157623543521004/">pre-dessert strawberry foam</a>, followed finally by our dessert (another variation of skyr). Being Friday, we all headed out for some drinks, so it was a night infused with lots of salmiakki, whiskey, and beer (this after the wines we had!).</p>
<p><a href="http://www.flickr.com/photos/byte/4402760488/" title="Steak, lobster tail"><img src="http://farm5.static.flickr.com/4072/4402760488_511b77125b_m.jpg" width="240" height="180" alt="Steak, lobster tail" align="left" hspace="5" vspace="5" /></a>Dinner on Sunday was at <a href="http://hereford.is/">Hereford Steakhouse</a>. For me, it started with a Cognac-infused <a href="http://www.flickr.com/photos/byte/4401991517/in/set-72157623543521004/">langoustine soup</a>, and for my main, I decided that I&#8217;d go for a <a href="http://www.flickr.com/photos/byte/4402760488/in/set-72157623543521004/">steak and lobster tail</a>. Skipped dessert, as I was pretty damn tired from the night before.</p>
<p><a href="http://www.flickr.com/photos/byte/4402004329/" title="Sergei Golubchik and his horse"><img src="http://farm3.static.flickr.com/2748/4402004329_48c7319929_m.jpg" width="240" height="180" alt="Sergei Golubchik and his horse" align="right" hspace="5" vspace="5" /></a>Monday was an excursion day. We tried our hand at horse riding. These Icelandic horses are apparently quite pony-sized, due to living in extreme conditions, thus eating less. We rode for about two hours, and it was the first time for me (and many of us). Let&#8217;s say I now have new respect for horse riders, and those folk at the races. You&#8217;d think it was cold; but the coldest part was stopping, giving the horses a break, and allowing the few to have a smoke break. I failed at getting my horse tied once we reached the stables &#8211; maybe I just had a stubborn horse (it was apparently a willing horse, not one for beginners). Consequently, I hurt a finger on my left hand, making it rather difficult to type!</p>
<p><center><br />
<a href="http://www.flickr.com/photos/byte/4402786386/" title="Reykjavik, Iceland by byte, on Flickr"><img src="http://farm5.static.flickr.com/4041/4402786386_37e8320528.jpg" width="500" height="375" alt="Reykjavik, Iceland" /></a><br />
<br />The <a href="http://en.wikipedia.org/wiki/Blue_Lagoon_%28geothermal_spa%29">Blue Lagoon</a>. Another photo, showing the <a href="http://www.flickr.com/photos/byte/4402030585/in/set-72157623543521004/">steam</a>.<br />
</center></p>
<p>For me, our visit to The Blue Lagoon was the highlight of the trip. I absolutely loved it. This alone, is worth visiting Iceland for. We were told that we&#8217;d be bored within an hour. Rubbish. We spent a good three to four hours there. They have a steam room, a sauna (which was a bit too cool for my liking), and of course, the geothermal spa. If more time permitted, I would have probably gone for a massage; apparently you can get one done while in the water. They clay-like mud, is quite relaxing when applied to skin. Your head is above water, but your body is submerged in the warm water. So when the cold winds do come, you still feel quite nice. Lifting your body up a little out of the water is also fun &#8211; kind of like &#8220;hot/cold treatments&#8221;. The experience is truly indescribable &#8211; you must experience it for yourself. Before going in, we decided to also grab lunch here &#8211; a day of <a href="http://www.flickr.com/photos/byte/4402031905/in/set-72157623543521004/">lamb</a>. Well presented, and very tasty, especially with the accompanying wine. Beware the bus journey: it took us over an hour to reach Reykjavik! </p>
<p><a href="http://www.flickr.com/photos/byte/4402038541/" title="Reykjavik, Iceland by byte, on Flickr"><img src="http://farm5.static.flickr.com/4003/4402038541_c511847736_m.jpg" width="240" height="180" alt="Reykjavik, Iceland" align="left" hspace="5" vspace="5" /></a>Monday&#8217;s dinner was at a restaurant close-by to the hotel. It was at <a href="http://www.laekjarbrekka.is">Laekjarbrekka</a>, situated a little on top of a hill. This place screamed romantic diners and fancy dining. They had good value for money sets, so I grabbed the langoustine set. It started off with a most amazing <a href="http://www.flickr.com/photos/byte/4402036913/in/set-72157623543521004/">langoustine soup</a>, flavoured with cream and Cognac, and we moved quite quickly to the <a href="http://www.flickr.com/photos/byte/4402038541/in/set-72157623543521004">main course</a> (pictured), which consisted of langoustines, a langoustine tempura, and a baked/puff pastry item filled with langoustine. Paired with some rose wine, and a few shots of vodka before (I&#8217;m told that if you feel a cold coming, you should have some vodka &#8211; keeps the gremlins at bay), this was a most excellent meal. Dessert was <a href="http://www.flickr.com/photos/byte/4402041331/in/set-72157623543521004">home-made ice-cream</a>, and again the presentation was fabulous. Truly a restaurant to take your romantic date to. </p>
<p>Anyway, the entire set of photos is on Flickr: <a href="http://www.flickr.com/photos/byte/sets/72157623543521004/">Reykjavik, Iceland</a>. </p>
<p>A few other notes:</p>
<ul>
<li>You can buy shark meat at the airport.</li>
<li>Whale meat you need to visit Noatun.</li>
<li>The airport Skybus is cheaper when you buy a return ticket. But when the flight leaves at 7am, you&#8217;ll have to get a taxi to the bus terminal, and then board the bus to the airport from there.</li>
<li>Keflavik airport was voted #4 best European airport in 2008. Beware, their security insists you remove all electronic items from your hand carry. Cables included. This process can take some unnecessary time.</li>
<li>Credit cards are accepted everywhere &#8211; taxis, kebab shops, pizza parlours, the post office, etc. I have yet to see Icelandic krona, because I survived quite well without it. If your transaction is under-1000kr, you may not even be required to sign the docket.</li>
<li>The Keflavik airport does not have free WiFi. Power plugs are non-existent at the waiting lounges, but there&#8217;s plenty of power at the coffee places before you hit your departure gates.</li>
<li>Nightlife is pretty disappointing if its not a weekend. Even on March 1, to celebrate the end of &#8220;beer prohibition&#8221; (beer was only legal in 1989, afaik), the crowds were not all that great. In fact, not many bars were open, even!</li>
</ul>
<p>All in all, it was great fun meeting everyone (a lot of old colleagues from MySQL now work at Monty Program), I think the meeting was rather productive (I&#8217;ll write about that in another post), and the time outside of the meeting was simply fabulous. Good choice for a meeting <a href="http://monty-says.blogspot.com">Monty</a>!</p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2009/04/15/cathay-pacific-economy-seats-fail' rel='bookmark' title='Permanent Link: Cathay Pacific Economy: seats = fail'>Cathay Pacific Economy: seats = fail</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2007/11/19/malaysian-airlines-have-had-service-improvements' rel='bookmark' title='Permanent Link: Malaysian Airlines have had service improvements'>Malaysian Airlines have had service improvements</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/01/05/the-apple-store-malaysia-phone-experience' rel='bookmark' title='Permanent Link: The Apple Store Malaysia Phone Experience'>The Apple Store Malaysia Phone Experience</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/03/04/iceland-an-experience/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MySQL Ecosystem &#8211; complementary talks at the conference?</title>
		<link>http://www.bytebot.net/blog/archives/2010/03/03/mysql-ecosystem-complementary-talks-at-the-conference</link>
		<comments>http://www.bytebot.net/blog/archives/2010/03/03/mysql-ecosystem-complementary-talks-at-the-conference#comments</comments>
		<pubDate>Wed, 03 Mar 2010 15:01:04 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql conference & expo 2010]]></category>
		<category><![CDATA[mysqlce2010]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1706</guid>
		<description><![CDATA[Its times like this, I want to hear from the greater community &#8211; the ones that are reading say, Planet MySQL or Planet MariaDB.
MySQL to me, and many others is an ecosystem. We&#8217;ve had for the longest time, complementary technology talks, like for memcached (which have been popular, filled rooms). NoSQL is becoming quite popular, [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register' rel='bookmark' title='Permanent Link: MySQL Conference Update: Grid is up, go promote and register!'>MySQL Conference Update: Grid is up, go promote and register!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials' rel='bookmark' title='Permanent Link: MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;'>MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/01/26/last-chances-to-submit-your-mysql-conference-talk' rel='bookmark' title='Permanent Link: Last chances to submit your MySQL Conference talk!'>Last chances to submit your MySQL Conference talk!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Its times like this, I want to hear from the greater community &#8211; the ones that are reading say, <a href="http://planet.mysql.com/">Planet MySQL</a> or <a href="http://planetmariadb.org/">Planet MariaDB</a>.</p>
<p>MySQL to me, and many others is an ecosystem. We&#8217;ve had for the longest time, complementary technology talks, like for memcached (which have been popular, filled rooms). NoSQL is becoming quite popular, and there are complementary technologies sitting around. To get an idea, if terms like the following turn you on: Hadoop, Redis, Pig, NDB (yes, MySQL Cluster is largely NoSQL before NoSQL became popular), Tokyo Tyrant, StormCloud (formerly Waffle Grid).</p>
<p><b>Now, do you want to see these kinds of talks at the <a href="http://en.oreilly.com/mysql2010">MySQL Conference &#038; Expo 2010</a>?</b></p>
<p>Check out the <a href="http://en.oreilly.com/mysql2010/public/schedule/grid">schedule grid</a>. Its pretty healthy already ;)</p>
<p>Also, how interested are you in talks about PostgreSQL and MySQL in similar environments? What about replicating between PostgreSQL and Drizzle?</p>
<p>So a simple yes/no, would help. I should get this into a poll, clearly&#8230; maybe next time.</p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register' rel='bookmark' title='Permanent Link: MySQL Conference Update: Grid is up, go promote and register!'>MySQL Conference Update: Grid is up, go promote and register!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials' rel='bookmark' title='Permanent Link: MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;'>MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/01/26/last-chances-to-submit-your-mysql-conference-talk' rel='bookmark' title='Permanent Link: Last chances to submit your MySQL Conference talk!'>Last chances to submit your MySQL Conference talk!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/03/03/mysql-ecosystem-complementary-talks-at-the-conference/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Recently in MariaDB #1</title>
		<link>http://www.bytebot.net/blog/archives/2010/02/23/recently-in-mariadb-1</link>
		<comments>http://www.bytebot.net/blog/archives/2010/02/23/recently-in-mariadb-1#comments</comments>
		<pubDate>Tue, 23 Feb 2010 05:26:42 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[distributions shipping MariaDB]]></category>
		<category><![CDATA[MySQL Sandbox]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[OpenSUSE build service]]></category>
		<category><![CDATA[RecentlyInMariaDB]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1689</guid>
		<description><![CDATA[ The aims of this kind of blog post is simple &#8211; I want to help keep the masses informed as to what&#8217;s happening with MariaDB, as a whole. There is a community growing, and MariaDB is a community project, not necessarily a Monty Program Ab baby (and we&#8217;re clear on this distinction: think of [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/02/05/mariadb-5-1-42-released' rel='bookmark' title='Permanent Link: MariaDB 5.1.42 released!'>MariaDB 5.1.42 released!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/01/19/mysql-with-yassl-vulnerability' rel='bookmark' title='Permanent Link: MySQL with yaSSL vulnerability'>MySQL with yaSSL vulnerability</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2007/05/03/multi-arch-on-debianubuntu-suck' rel='bookmark' title='Permanent Link: Multi-arch on Debian/Ubuntu suck'>Multi-arch on Debian/Ubuntu suck</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://askmonty.org/wiki/index.php/Main_Page"><img src="http://www.bytebot.net/blog/wp-content/uploads/2010/02/MariaDB-seal.png" alt="MariaDB Seal" hspace="5" vspace="5" border="0" align="right"/></a> The aims of this kind of blog post is simple &#8211; I want to help keep the masses informed as to what&#8217;s happening with MariaDB, as a whole. There is a community growing, and MariaDB is a community project, not necessarily a Monty Program Ab baby (and we&#8217;re clear on this distinction: think of it like Canonical/Ubuntu). So, think of it as such that I&#8217;m sharing the good news, and summarising what&#8217;s been happening, to save you time.</p>
<p><b>MariaDB added to the Debian/Ubuntu wishlists</b><br />
One of MariaDB&#8217;s goals is that it should be easily available for download. While we provide binaries and source at <a href="http://askmonty.org/wiki/index.php/MariaDB:Download">the MariaDB download page</a>, we would love to see the binaries sitting in Linux distributions. So it is definitely good to see that it is on <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565308">the Debian wishlist</a>. It is also worth noting that Ubuntu has got it <a href="https://bugs.launchpad.net/debian/+bug/519478">as a wishlist item</a> as well.</p>
<p><b>MariaDB via the OpenSUSE build service</b><br />
A community member, Michal Hrušecký, has decided that there will be <a href="http://michal.hrusecky.net/index.php/blog/show/Updates-in-unstable-repo-%28not-only%29-for-openSUSE.html">tracking of MariaDB</a>, and since it comes out of the OpenSUSE build service, you can find them in the <a href="http://download.opensuse.org/repositories/server:/database:/UNSTABLE/">unstable repository</a>, for CentOS/RHEL 5, Fedora 11 and 12, Mandriva 2010, and OpenSUSE 11.1, 11.2, and the factory builds. All these are of course of the latest release available, which is <a href="http://askmonty.org/wiki/index.php/MariaDB:Download">MariaDB 5.1.42</a>.</p>
<p><b>MariaDB for Solaris 10 and Debian on SPARC</b><br />
<a href="http://dooratthe.endoftheinternet.org/thoughts/">Mark</a> has very kindly decided to build binaries for <a href="http://dooratthe.endoftheinternet.org/thoughts/?category=Solaris&#038;post=MariaDB_Binaries_For_Solaris_Sparc">Solaris 10 on Sparc</a> as well as <a href="http://dooratthe.endoftheinternet.org/thoughts/?category=Linux&#038;post=MariaDB_Sparc_Linux">Debian GNU/Linux on Sparc</a>. He even managed to write up a <a href="http://dooratthe.endoftheinternet.org/thoughts/Solaris/MariaDB_Quick_and_Dirty_Install.text">quick &#038; dirty install guide</a>, which should suffice for all intents and purposes. Note that these are still 5.1.41-RC releases, and you can expect to get updates soon for the released 5.1.42.</p>
<p><b>Using MariaDB with the MySQL Sandbox</b><br />
The <a href="http://www.mysqlsandbox.net/">MySQL Sandbox</a> is a great way to play with new releases of MySQL or MariaDB. Gerry Narvaja has got some tricks up his sleeve, to allow you to get going using <a href="http://mmatemate.blogspot.com/2010/02/using-mariadb-with-mysql-sandbox.html">MariaDB with the MySQL Sandbox</a>.</p>
<p><b>MariaDB resources</b><br />
A few resources if you&#8217;re new to the community:</p>
<ul>
<li><a href="https://launchpad.net/~maria-discuss">maria-discuss</a> mailing list (and its <a href="https://lists.launchpad.net/maria-discuss/">archives</a>)</li>
<li><a href="https://launchpad.net/~maria-developers">maria-developers</a> mailing list (and its <a href="https://lists.launchpad.net/maria-developers/">archives</a>)</li>
<li><a href="http://marialog.archivist.info/">#maria IRC logs</a>. Don&#8217;t hesitate to join us on irc.freenode.net on #maria</li>
</ul>
<p><b>Community Shoutout</b><br />
Without the active community hacking on MariaDB, we would not be where we are today. So I&#8217;d like to express a word of thanks to those that are featured here in this particular post. Thank you Michal for the work with the OpenSUSE build service, thank you Mark for the Sparc related builds, and thank you the <a href="http://www.archivist.info/"><tt>archivist</tt></a> for keeping the logs of #maria going. Maybe next time, I&#8217;ll attempt to feature a contributor of the newsletter, or something ;)</p>
<p>Hope you&#8217;ve found this useful, and the aim is to have this bi-monthly, more frequent if there is a need for it. I might even record it as a short podcast, so you can take it on the go. If you have thoughts on this, don&#8217;t hesitate to contact me, or drop me an email at colin[AT]askmonty.org. </p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/02/05/mariadb-5-1-42-released' rel='bookmark' title='Permanent Link: MariaDB 5.1.42 released!'>MariaDB 5.1.42 released!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/01/19/mysql-with-yassl-vulnerability' rel='bookmark' title='Permanent Link: MySQL with yaSSL vulnerability'>MySQL with yaSSL vulnerability</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2007/05/03/multi-arch-on-debianubuntu-suck' rel='bookmark' title='Permanent Link: Multi-arch on Debian/Ubuntu suck'>Multi-arch on Debian/Ubuntu suck</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/02/23/recently-in-mariadb-1/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MySQL Conference Update: Grid is up, go promote and register!</title>
		<link>http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register</link>
		<comments>http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register#comments</comments>
		<pubDate>Wed, 10 Feb 2010 06:24:16 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql conference & expo]]></category>
		<category><![CDATA[mysql conference & expo 2010]]></category>
		<category><![CDATA[mysqlce2010]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1673</guid>
		<description><![CDATA[
This is a quick update on the O&#8217;Reilly MySQL Conference &#038; Expo 2010, happening April 12-15 2010 in Santa Clara.

We&#8217;ve put up a preliminary schedule, and you can expect this to be fast moving/changing, as we confirm more talks. A tradeoff of this, is that you can now also see the sessions by track, which [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials' rel='bookmark' title='Permanent Link: MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;'>MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2008/12/16/a-little-mysql-conference-expo-2009-update' rel='bookmark' title='Permanent Link: A little MySQL Conference &#038; Expo 2009 update'>A little MySQL Conference &#038; Expo 2009 update</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/12/29/oreilly-mysql-conference-2010' rel='bookmark' title='Permanent Link: o&#8217;reilly mysql conference &#038; expo 2010'>o&#8217;reilly mysql conference &#038; expo 2010</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://conferences.oreilly.com/mysql"><br />
<img src="http://assets.en.oreilly.com/1/event/36/mysql2010_125x125.gif" width="125" height="125"  border="0"  alt="O'Reilly MySQL Conference &#038; Expo 2010" title="O'Reilly MySQL Conference &#038; Expo 2010"   align="right" vspace="5" hspace="5" /></a>This is a quick update on the <a href="http://en.oreilly.com/mysql2010">O&#8217;Reilly MySQL Conference &#038; Expo 2010</a>, happening April 12-15 2010 in Santa Clara.</p>
<ol>
<li>We&#8217;ve put up a <a href="http://en.oreilly.com/mysql2010/public/schedule/grid">preliminary schedule</a>, and you can expect this to be fast moving/changing, as we confirm more talks. A tradeoff of this, is that you can now also see the sessions by track, which helps give you an overview of where the content really is.</li>
<li>If you&#8217;re attending the conference, why not promote it? We have lots of <a href="http://en.oreilly.com/mysql2010/public/content/promote">badges and banners</a> for attendees.</li>
<li>If you&#8217;re a speaker, you sure want to fill that room up, so why not help promote the conference using the <a href="http://en.oreilly.com/mysql2010/public/content/speaker-graphics">speaker version</a> of the badges and banners?</li>
</ol>
<p>So if you were wondering what kind of talks we have, beyond just the quick taster we had earlier, this should help you decide quickly, and <a href="https://en.oreilly.com/mysql2010/public/register">register</a> <b>before</b> February 22 2010. Why? Because you save a cool USD$250, which you can then use to buy beer at the Hyatt ;-) (because that&#8217;s where more cool discussion happens late into the night!)</p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials' rel='bookmark' title='Permanent Link: MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;'>MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2008/12/16/a-little-mysql-conference-expo-2009-update' rel='bookmark' title='Permanent Link: A little MySQL Conference &#038; Expo 2009 update'>A little MySQL Conference &#038; Expo 2009 update</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/12/29/oreilly-mysql-conference-2010' rel='bookmark' title='Permanent Link: o&#8217;reilly mysql conference &#038; expo 2010'>o&#8217;reilly mysql conference &#038; expo 2010</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MariaDB 5.1.42 released!</title>
		<link>http://www.bytebot.net/blog/archives/2010/02/05/mariadb-5-1-42-released</link>
		<comments>http://www.bytebot.net/blog/archives/2010/02/05/mariadb-5-1-42-released#comments</comments>
		<pubDate>Fri, 05 Feb 2010 08:46:49 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[MariaDB 5.1.42]]></category>
		<category><![CDATA[MONyog]]></category>
		<category><![CDATA[SQLyog]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1665</guid>
		<description><![CDATA[Dear MariaDB users,
MariaDB 5.1.42, a new branch of the MySQL database which includes all major open source storage engines, myriad bug fixes, and many community patches, has been released. We are very proud to have made our first final release, and we encourage you to test it out and use it on your systems. 
For [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/02/23/recently-in-mariadb-1' rel='bookmark' title='Permanent Link: Recently in MariaDB #1'>Recently in MariaDB #1</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2008/04/06/mysql-on-leopard-os-x-105-prefpane-fixed' rel='bookmark' title='Permanent Link: MySQL on Leopard OS X 10.5 PrefPane fixed!'>MySQL on Leopard OS X 10.5 PrefPane fixed!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2006/08/22/mysql-connectorphp-for-mysql-5024-and-php-515-released' rel='bookmark' title='Permanent Link: MySQL Connector/PHP for MySQL 5.0.24 and PHP 5.1.5 released'>MySQL Connector/PHP for MySQL 5.0.24 and PHP 5.1.5 released</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Dear MariaDB users,</p>
<p>MariaDB 5.1.42, a new branch of the MySQL database which includes all major open source storage engines, myriad bug fixes, and many community patches, has been released. We are very proud to have made our first final release, and we encourage you to test it out and use it on your systems. </p>
<p>For an overview of what&#8217;s new in MariaDB 5.1.42, please check out the <a href="http://askmonty.org/wiki/index.php/Manual:MariaDB_5.1.42_Release_Notes">release notes.</a></p>
<p>For information on installing MariaDB 5.1.42 on new servers or upgrading to MariaDB 5.1.42 from previous releases, please <a href="http://askmonty.org/wiki/index.php/Manual:Installation">check out the installation guide</a>.</p>
<p>MariaDB is available in source and binary form for a variety of platforms and is available from the <a href="http://askmonty.org/wiki/index.php/MariaDB:Download:MariaDB_5.1.42">download pages</a>.</p>
<p>It is also our pleasure to announce that we have a partnership with Webyog to offer their tools for trial and at a discounted rate if purchased within 30 days. Find out more at: <a href="http://askmonty.org/downloads/links/webyog">Download &#8211; SQLyog MySQL Fronted, MONyog MySQL Monitoring Tool</a> or via the <a href="http://askmonty.org/wiki/index.php/MariaDB:Download#Software_Partner_Downloads">software partner downloads</a>.</p>
<p>We welcome and appreciate your feedback, bug reports, bug fixes, patches, and participation on our mailing list. Find out more <a href="http://askmonty.org/wiki/index.php/MariaDB#How_can_I_participate_in_the_development_of_MariaDB.3F">about working with the community</a>.</p>
<p>Enjoy!</p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/02/23/recently-in-mariadb-1' rel='bookmark' title='Permanent Link: Recently in MariaDB #1'>Recently in MariaDB #1</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2008/04/06/mysql-on-leopard-os-x-105-prefpane-fixed' rel='bookmark' title='Permanent Link: MySQL on Leopard OS X 10.5 PrefPane fixed!'>MySQL on Leopard OS X 10.5 PrefPane fixed!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2006/08/22/mysql-connectorphp-for-mysql-5024-and-php-515-released' rel='bookmark' title='Permanent Link: MySQL Connector/PHP for MySQL 5.0.24 and PHP 5.1.5 released'>MySQL Connector/PHP for MySQL 5.0.24 and PHP 5.1.5 released</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/02/05/mariadb-5-1-42-released/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Last chances to submit your MySQL Conference talk!</title>
		<link>http://www.bytebot.net/blog/archives/2010/01/26/last-chances-to-submit-your-mysql-conference-talk</link>
		<comments>http://www.bytebot.net/blog/archives/2010/01/26/last-chances-to-submit-your-mysql-conference-talk#comments</comments>
		<pubDate>Tue, 26 Jan 2010 17:16:48 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[mysql conference & expo 2010]]></category>
		<category><![CDATA[mysqlce2010]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1652</guid>
		<description><![CDATA[The O&#8217;Reilly MySQL Conference &#038; Expo 2010 will be closing the Call for Participation at the end of the 27th January 2010. You have less than 48-hours &#8211; so get submitting already.
Take a gander at some of the shortlisted presentations, look at all the amazing tutorials, and what&#8217;s keeping you waiting from registering?


Related posts:MySQL Conference [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register' rel='bookmark' title='Permanent Link: MySQL Conference Update: Grid is up, go promote and register!'>MySQL Conference Update: Grid is up, go promote and register!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/12/29/oreilly-mysql-conference-2010' rel='bookmark' title='Permanent Link: o&#8217;reilly mysql conference &#038; expo 2010'>o&#8217;reilly mysql conference &#038; expo 2010</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials' rel='bookmark' title='Permanent Link: MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;'>MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.oreilly.com/mysql2010">The O&#8217;Reilly MySQL Conference &#038; Expo 2010</a> will be closing the <a href="http://en.oreilly.com/mysql2010/public/cfp/79">Call for Participation</a> at the end of the 27th January 2010. You have <b>less than 48-hours</b> &#8211; so get submitting already.</p>
<p>Take a gander at some of the <a href="http://en.oreilly.com/mysql2010/public/schedule/presentations/General">shortlisted presentations</a>, look at all the amazing <a href="http://en.oreilly.com/mysql2010/public/schedule/stype/Tutorial">tutorials</a>, and what&#8217;s keeping you waiting from <b><a href="https://en.oreilly.com/mysql2010/public/register">registering</a></b>?</p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2010/02/10/mysql-conference-update-grid-is-up-go-promote-and-register' rel='bookmark' title='Permanent Link: MySQL Conference Update: Grid is up, go promote and register!'>MySQL Conference Update: Grid is up, go promote and register!</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/12/29/oreilly-mysql-conference-2010' rel='bookmark' title='Permanent Link: o&#8217;reilly mysql conference &#038; expo 2010'>o&#8217;reilly mysql conference &#038; expo 2010</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2010/03/06/mysql-conference-radar-interview-mini-tutorials' rel='bookmark' title='Permanent Link: MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;'>MySQL Conference: Radar interview, &#8220;mini-tutorials&#8221;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/01/26/last-chances-to-submit-your-mysql-conference-talk/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL with yaSSL vulnerability</title>
		<link>http://www.bytebot.net/blog/archives/2010/01/19/mysql-with-yassl-vulnerability</link>
		<comments>http://www.bytebot.net/blog/archives/2010/01/19/mysql-with-yassl-vulnerability#comments</comments>
		<pubDate>Tue, 19 Jan 2010 14:00:46 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[yaSSL]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1650</guid>
		<description><![CDATA[It&#8217;s worth noting that if you&#8217;re using MySQL 5.0/5.1, with SSL enabled, and you&#8217;re using yaSSL as opposed to OpenSSL, you&#8217;re vulnerable to CVE-2009-4484. Its a buffer overflow, that works over TCP, via the MySQL port, 3306. Lenz furnished us with some information, and the patch is available. You&#8217;ll see this rocking when MySQL 5.1.43 [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2008/07/14/mysql-5126-rc-released-and-developer-resources-thoughts' rel='bookmark' title='Permanent Link: MySQL 5.1.26-rc released, and developer resources thoughts'>MySQL 5.1.26-rc released, and developer resources thoughts</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/08/23/mysql-labs' rel='bookmark' title='Permanent Link: MySQL Labs'>MySQL Labs</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2008/01/16/centos-centosplus-and-mysql-versions-shipping-there' rel='bookmark' title='Permanent Link: CentOS, CentOSPlus, and MySQL versions shipping there'>CentOS, CentOSPlus, and MySQL versions shipping there</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s worth noting that if you&#8217;re using MySQL 5.0/5.1, with SSL enabled, and you&#8217;re using <a href="http://www.yassl.com/">yaSSL</a> as opposed to OpenSSL, you&#8217;re vulnerable to <a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4484">CVE-2009-4484</a>. Its a buffer overflow, that works over TCP, via the MySQL port, 3306. <a href="http://www.lenzg.net/">Lenz</a> furnished us with some <a href="http://lists.mysql.com/packagers/444">information</a>, and the <a href="http://lists.mysql.com/commits/96697">patch</a> is available. You&#8217;ll see this rocking when MySQL 5.1.43 gets released. </p>
<p>It affects Debian (presumably, it will also affect Ubuntu). Red Hat/CentOS is <a href="https://bugzilla.redhat.com/show_bug.cgi?id=555313">spared</a>, because instead of using yaSSL, OpenSSL is used. </p>
<p>MariaDB <a href="http://askmonty.org/wiki/index.php/MariaDB:Download">5.1.41-rc</a> (based on MySQL 5.1.41) which was just released a few days ago, naturally is also affected. The next release candidate might potentially be rebased against 5.1.42 (the builds are already ready, from what I understand), and will include this patch.</p>
<p><b>Some yaSSL trivia:</b> did you know that one of the two co-founders of the project, is actually Larry Stefonic? Larry was an early MySQL Ab employee, holding quite a few positions at MySQL Ab; he was the President of MySQL KK (the Japanese branch), and was also SVP for worldwide OEM sales!</p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2008/07/14/mysql-5126-rc-released-and-developer-resources-thoughts' rel='bookmark' title='Permanent Link: MySQL 5.1.26-rc released, and developer resources thoughts'>MySQL 5.1.26-rc released, and developer resources thoughts</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/08/23/mysql-labs' rel='bookmark' title='Permanent Link: MySQL Labs'>MySQL Labs</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2008/01/16/centos-centosplus-and-mysql-versions-shipping-there' rel='bookmark' title='Permanent Link: CentOS, CentOSPlus, and MySQL versions shipping there'>CentOS, CentOSPlus, and MySQL versions shipping there</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/01/19/mysql-with-yassl-vulnerability/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some MySQL-related links</title>
		<link>http://www.bytebot.net/blog/archives/2010/01/12/some-mysql-related-links</link>
		<comments>http://www.bytebot.net/blog/archives/2010/01/12/some-mysql-related-links#comments</comments>
		<pubDate>Wed, 13 Jan 2010 04:10:57 +0000</pubDate>
		<dc:creator>Colin Charles</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Percona]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[Second Life]]></category>

		<guid isPermaLink="false">http://www.bytebot.net/blog/?p=1638</guid>
		<description><![CDATA[Check out how Linden Labs, creators of the popular game Second Life, upgraded their MySQL database. The MySQL they use? Straight out of Debian! Of course, now, they&#8217;re running with the Percona patchset, against MySQL 5.0.84. Definitely a good read.
Its good to see Lars post about contributing to the MySQL replication &#038; backup codebase. It [...]


Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2007/07/26/mysql-related-resources-that-you-will-enjoy-reading' rel='bookmark' title='Permanent Link: MySQL-related resources that you will enjoy reading'>MySQL-related resources that you will enjoy reading</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/02/06/incremental-backup-that-uses-mysql' rel='bookmark' title='Permanent Link: Incremental backup that uses MySQL'>Incremental backup that uses MySQL</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2007/03/20/its-mid-week-for-the-google-summer-of-code-we-have-some-new-goodies' rel='bookmark' title='Permanent Link: Its mid-week for the Google Summer of Code &#8211; we have some new goodies!'>Its mid-week for the Google Summer of Code &#8211; we have some new goodies!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Check out how Linden Labs, creators of the popular game Second Life, upgraded <a href="https://blogs.secondlife.com/community/technology/blog/2010/01/11/diary-of-a-paranoid-mysql-upgrade">their MySQL database</a>. The MySQL they use? Straight out of Debian! Of course, now, they&#8217;re running with the Percona <a href="http://www.percona.com/docs/wiki/release:start#patched_mysql_5.0.84_build_18">patchset</a>, against MySQL 5.0.84. Definitely a good read.</p>
<p>Its good to see Lars post about <a href="http://larsthalmann.blogspot.com/2009/12/how-to-contribute-with-replication-and.html">contributing to the MySQL replication &#038; backup codebase</a>. It sounds like the replication &#038; backup team have decided that mentoring is the way to go &#8211; you get a &#8220;coach developer&#8221; if the idea is accepted. I like this very much, and sincerely hope it spreads to the rest of the server; it will help decentralise development of MySQL, and the endgame is a larger community.</p>
<p>While I know Christmas is over, <a href="http://www.youtube.com/watch?v=joq3H8IjHKI">The 12 Days of Christmas (MySQL Edition)</a>, is actually quite a fun watch :)</p>
<p>Happy New Year all!</p>


<p>Related posts:<ol><li><a href='http://www.bytebot.net/blog/archives/2007/07/26/mysql-related-resources-that-you-will-enjoy-reading' rel='bookmark' title='Permanent Link: MySQL-related resources that you will enjoy reading'>MySQL-related resources that you will enjoy reading</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2009/02/06/incremental-backup-that-uses-mysql' rel='bookmark' title='Permanent Link: Incremental backup that uses MySQL'>Incremental backup that uses MySQL</a></li>
<li><a href='http://www.bytebot.net/blog/archives/2007/03/20/its-mid-week-for-the-google-summer-of-code-we-have-some-new-goodies' rel='bookmark' title='Permanent Link: Its mid-week for the Google Summer of Code &#8211; we have some new goodies!'>Its mid-week for the Google Summer of Code &#8211; we have some new goodies!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.bytebot.net/blog/archives/2010/01/12/some-mysql-related-links/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
