<?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>Computer Plumber &#187; MYSQL</title>
	<atom:link href="http://computerplumber.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://computerplumber.com</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 02:54:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing MySQL gem for Ruby 1.9.x</title>
		<link>http://computerplumber.com/2009/07/installing-mysql-gem-for-ruby-1-9-x/</link>
		<comments>http://computerplumber.com/2009/07/installing-mysql-gem-for-ruby-1-9-x/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 19:53:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://computerplumber.com/?p=625</guid>
		<description><![CDATA[As of this writing, the MYSQL gem cannot be installed by simply doing a GEM INSTALL with ruby 1.9.1. In order to install the gem, follow these easy steps. First download the mysql gem from rubyforge, and unzip it: sudo wget http://rubyforge.org/frs/download.php/51087/mysql-ruby-2.8.1.tar.gz sudo tar -xzvf mysql-ruby-2.8.1.tar.gz cd mysql-ruby-2.8.1 Now, you will need to compile the [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/07/installing-mysql-gem-for-ruby-1-9-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Duplicate Fields in a Database Table</title>
		<link>http://computerplumber.com/2009/05/finding-duplicate-fields-in-a-database-table/</link>
		<comments>http://computerplumber.com/2009/05/finding-duplicate-fields-in-a-database-table/#comments</comments>
		<pubDate>Sat, 30 May 2009 19:34:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQLite3]]></category>

		<guid isPermaLink="false">http://blog.computerplumber.ca/?p=446</guid>
		<description><![CDATA[Occasionally it is necessary to find duplicate fields within a database table.  The following query can be used to accomplish this easily. SELECT * FROM 'table' WHERE ('item' IN (SELECT 'item' FROM 'table' GROUP BY 'item' HAVING COUNT(*) &#62; 1)) ORDER BY 'item' This will list all rows in the desired &#8216;table&#8217; where the given [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/05/finding-duplicate-fields-in-a-database-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up Ubuntu for Rails Development</title>
		<link>http://computerplumber.com/2009/05/setting-up-ubuntu-for-rails-development/</link>
		<comments>http://computerplumber.com/2009/05/setting-up-ubuntu-for-rails-development/#comments</comments>
		<pubDate>Fri, 29 May 2009 19:40:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.computerplumber.ca/?p=455</guid>
		<description><![CDATA[These are a the procedures we use to setup a PC or VM for development of a ruby on rails application. First things first, get your install software ready.&#160; These instructions are based on the Hardy Heron version of Ubuntu (8.04). Install the base OS and then fire up the terminal so you can copy [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/05/setting-up-ubuntu-for-rails-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing the Mysql Gem</title>
		<link>http://computerplumber.com/2009/01/installing-the-mysql-gem/</link>
		<comments>http://computerplumber.com/2009/01/installing-the-mysql-gem/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 05:04:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.computerplumber.ca/?p=201</guid>
		<description><![CDATA[This is just a self reminder. I always seem to forget the dev package that is required to build the mysql gem. Failure to install this results in all kinds of headaches: sudo apt-get install libmysqlclient15-dev Then install the gem and you are all set: sudo gem install mysql]]></description>
		<wfw:commentRss>http://computerplumber.com/2009/01/installing-the-mysql-gem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Script to Backup Smaller MYSQL Databases remotely</title>
		<link>http://computerplumber.com/2008/12/simple-script-to-backup-smaller-mysql-databases/</link>
		<comments>http://computerplumber.com/2008/12/simple-script-to-backup-smaller-mysql-databases/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 02:35:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://blog.computerplumber.ca/?p=117</guid>
		<description><![CDATA[Here is a simple script you can use to add as a job that you can use to backup smaller remote MYSQL DB&#8217;s.  This script will take a mysql dump, date it, then add it to an archive (with the date), then the uncompressed file is deleted.  It is perfect to use as a daily [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2008/12/simple-script-to-backup-smaller-mysql-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problem Installing Typo Gem</title>
		<link>http://computerplumber.com/2008/12/problem-installing-typo-gem/</link>
		<comments>http://computerplumber.com/2008/12/problem-installing-typo-gem/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 15:09:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[SQLite3]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.computerplumber.ca/?p=98</guid>
		<description><![CDATA[We have a rails server that we wanted to install the typo gem onto.  Alas, our attempts to install the gem kept failing with the following error: Building native extensions. This could take a while... ERROR: Error installing typo: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 extconf.rb install typo checking for fdatasync() in -lrt... [...]]]></description>
		<wfw:commentRss>http://computerplumber.com/2008/12/problem-installing-typo-gem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

