<?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>How 2 Guru &#187; MySQL</title>
	<atom:link href="http://www.myhow2guru.com/archives/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myhow2guru.com</link>
	<description>My Technical Sharing Blog</description>
	<lastBuildDate>Wed, 21 Jul 2010 02:55:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Export mysql select statement into csv</title>
		<link>http://www.myhow2guru.com/archives/export-mysql-select-statement-into-csv/</link>
		<comments>http://www.myhow2guru.com/archives/export-mysql-select-statement-into-csv/#comments</comments>
		<pubDate>Thu, 20 May 2010 11:52:52 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[FILE Permission]]></category>
		<category><![CDATA[MySQL statement export to csv]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=156</guid>
		<description><![CDATA[Today I would like to share some useful command for developer to export out data by using SQL statement. I think most of the developer should familiar with the putty &#038; command line environment. But always facing an problem to export out the data in a excel/csv file in order to send it to customer. [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/export-mysql-select-statement-into-csv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL release free disk space.</title>
		<link>http://www.myhow2guru.com/archives/mysql-release-free-disk-space/</link>
		<comments>http://www.myhow2guru.com/archives/mysql-release-free-disk-space/#comments</comments>
		<pubDate>Tue, 18 May 2010 05:03:44 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=143</guid>
		<description><![CDATA[When perform some data clean up in MySQL, found that no disk space was release and MySQL still occupied it. Here is the command to check those tables with more than 300MB of data: ?View Code MYSQLUSE &#60;DATABASE NAME&#62;; show table status where data_length &#62; 300000000 In order to force MySQL release the disk space, [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/mysql-release-free-disk-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check MySQL database size</title>
		<link>http://www.myhow2guru.com/archives/check-mysql-database-size/</link>
		<comments>http://www.myhow2guru.com/archives/check-mysql-database-size/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 06:31:54 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Database Size]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=64</guid>
		<description><![CDATA[How to check MySQL database size in your server?  Actually MySQL already provide the information, what you need to do is just do a simple query to retrieve the data. Below is the query : ?View Code MYSQLSELECT table_schema &#34;Data Base Name&#34;, sum&#40; data_length + index_length &#41; / 1024 / 1024 &#34;Data Base Size in [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/check-mysql-database-size/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MySQL table corrupt &amp; repair</title>
		<link>http://www.myhow2guru.com/archives/mysql-table-corrupt-repair/</link>
		<comments>http://www.myhow2guru.com/archives/mysql-table-corrupt-repair/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 06:35:19 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=54</guid>
		<description><![CDATA[Recently I am trying to dump a customer MySQL database to a SQL file &#38; restore to another server. An error occur during the dump process. The error mention that one of the table in the database is crashed &#38; repair required. Then I try to login into MySQL server &#38; use the particular database [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/mysql-table-corrupt-repair/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Apache PHP unable connect remote MySQL</title>
		<link>http://www.myhow2guru.com/archives/apache-php-unable-connect-remote-mysql/</link>
		<comments>http://www.myhow2guru.com/archives/apache-php-unable-connect-remote-mysql/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 02:56:39 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SELinux]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=49</guid>
		<description><![CDATA[Recently I am setup a new server for one of my company client. After finish configure the server &#38; I am trying to setup SugarCRM inside the server, I found that the database connection part is not able to connect to a remote database server. Then I try to fill in database information to local [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/apache-php-unable-connect-remote-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL server has gone away</title>
		<link>http://www.myhow2guru.com/archives/mysql-server-has-gone-away/</link>
		<comments>http://www.myhow2guru.com/archives/mysql-server-has-gone-away/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 03:50:55 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[max_allowed_packet]]></category>
		<category><![CDATA[MySQL gone away]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=36</guid>
		<description><![CDATA[Today I am trying to restore one of MySQL dump into my development database. While I executing the mysql -uroot -p XXXX &#60; XXXX.sql, the restoration show me the error of &#8221;ERROR 2006 (HY000) at line 3051: MySQL server has gone away&#8220;. Then I double check on the database that I restore, I found that the [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/mysql-server-has-gone-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to reset MySQL root password</title>
		<link>http://www.myhow2guru.com/archives/how-to-reset-mysql-root-password/</link>
		<comments>http://www.myhow2guru.com/archives/how-to-reset-mysql-root-password/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 02:31:15 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[reset password]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=24</guid>
		<description><![CDATA[As a database administrator, you might forget the root password for your database. It is a serious problem. This tutorial is to teach you how to reset the root password if you forget it. Stop the MySQL service. /etc/init.d/mysql stop Start the MySQL in the save mode. mysqld_safe &#8211;skip-grant-tables &#38; Login into MySQL as root [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/how-to-reset-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
