<?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; Database</title>
	<atom:link href="http://www.myhow2guru.com/archives/category/database/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>PHP call oracle store procedure</title>
		<link>http://www.myhow2guru.com/archives/php-call-oracle-store-procedure/</link>
		<comments>http://www.myhow2guru.com/archives/php-call-oracle-store-procedure/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 04:47:05 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Store Procedure]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=96</guid>
		<description><![CDATA[For PHP, it is not a difficult task to connect to Oracle database. But recently, I am working on a project that require me to execute the oracle store procedure with pass in some input &#38; retrieve the output. It should be pretty easy, just I never try it before. So I write a simple [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/php-call-oracle-store-procedure/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Oracle import &amp; export</title>
		<link>http://www.myhow2guru.com/archives/oracle-import-export/</link>
		<comments>http://www.myhow2guru.com/archives/oracle-import-export/#comments</comments>
		<pubDate>Thu, 14 May 2009 12:46:25 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[exp]]></category>
		<category><![CDATA[expdp]]></category>
		<category><![CDATA[imp]]></category>
		<category><![CDATA[impdp]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=79</guid>
		<description><![CDATA[Actually, I am a newbie for the oracle database. Never though it before I start my current job. Lucky my company has a oracle expert &#38; always help me to solve those problems.  Today, just want to share some of my experience regarding the export &#38; import for oracle. I was taught to use the [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/oracle-import-export/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle procedure testing</title>
		<link>http://www.myhow2guru.com/archives/oracle-procedure-testing/</link>
		<comments>http://www.myhow2guru.com/archives/oracle-procedure-testing/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 11:01:49 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[DBMS_OUTPUT.PUTLINE]]></category>
		<category><![CDATA[serveroutput]]></category>
		<category><![CDATA[sqlplus]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=76</guid>
		<description><![CDATA[As a developer, most of the time you have to testing on your script output. Some how, you also need to debug into the script &#38; checking on each variable value. In Oracle procedure, if you doesn&#8217;t having any debugging tools like sql developer. It is very difficult to trace your procedure whether is working [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/oracle-procedure-testing/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>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>Zend php connect to oracle using tnsnames</title>
		<link>http://www.myhow2guru.com/archives/zend-php-connect-to-oracle-using-tnsnames/</link>
		<comments>http://www.myhow2guru.com/archives/zend-php-connect-to-oracle-using-tnsnames/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 06:26:19 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Core]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=32</guid>
		<description><![CDATA[This few days I am trying to configure my Linux server Zend PHP to connect oracle by using the tnsnames.ora profile. For my finding, there are several ways to do so. 1. Install the oracle clients into the Linux server &#38; it will set the environment variable TNS_ADMIN to the correct path for the tnsnames.ora. [...]]]></description>
		<wfw:commentRss>http://www.myhow2guru.com/archives/zend-php-connect-to-oracle-using-tnsnames/feed/</wfw:commentRss>
		<slash:comments>1</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>
