<?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>MySQL Point &#187; How To</title>
	<atom:link href="http://mysqlpoint.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://mysqlpoint.com</link>
	<description>Source of information about mysql</description>
	<lastBuildDate>Sun, 06 Dec 2009 07:40:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL CONCAT Function</title>
		<link>http://mysqlpoint.com/mysql-concat-function/</link>
		<comments>http://mysqlpoint.com/mysql-concat-function/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 15:50:11 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[concat]]></category>
		<category><![CDATA[Function]]></category>

		<guid isPermaLink="false">http://mysqlpoint.com/?p=111</guid>
		<description><![CDATA[In this tutorial, you will learn various ways to concatenate two or more string together by using concat function which is provided by MySQL.
Almost RMDMSs support us to concatenate two or more strings together by using different implementations. MS SQL server us operator plus (+) to concatenate strings. Oracle only allows you to concatenate two [...]]]></description>
		<wfw:commentRss>http://mysqlpoint.com/mysql-concat-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL UNION Keyword</title>
		<link>http://mysqlpoint.com/mysql-union-keyword/</link>
		<comments>http://mysqlpoint.com/mysql-union-keyword/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 15:37:30 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://mysqlpoint.com/?p=108</guid>
		<description><![CDATA[You can use UNION if you want to select rows one after the other from several tables, or several sets of rows from a single table all as a single result set.
UNION is available as of MySQL 4.0.This section illustrates how to use it.
Suppose you have two tables that list prospective and actual customers, a [...]]]></description>
		<wfw:commentRss>http://mysqlpoint.com/mysql-union-keyword/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Quickly Analyze All Tables in MySQL Database</title>
		<link>http://mysqlpoint.com/how-to-quickly-analyze-all-tables-in-mysql-database/</link>
		<comments>http://mysqlpoint.com/how-to-quickly-analyze-all-tables-in-mysql-database/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 20:32:01 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[analyze]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://mysqlpoint.com/?p=103</guid>
		<description><![CDATA[ANALYZE TABLE analyzes and stores the key distribution for a table. The MySQL query optimizer is the magic inside MySQL that decides which keys, if any, to use to in the query. ANALYZE helps query optimizer to make accurate decisions by detailed analysis of the data, unlike query optimizer which makes quick analysis.
The command to [...]]]></description>
		<wfw:commentRss>http://mysqlpoint.com/how-to-quickly-analyze-all-tables-in-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Export MS Access Database To MySQL Database</title>
		<link>http://mysqlpoint.com/how-to-export-ms-access-database-to-mysql-database/</link>
		<comments>http://mysqlpoint.com/how-to-export-ms-access-database-to-mysql-database/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 20:27:54 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[MS Access]]></category>

		<guid isPermaLink="false">http://mysqlpoint.com/?p=101</guid>
		<description><![CDATA[Here are few tips (with undocumented features) to help you export huge MS Access database (production database with real data) to MySQL.
Use mdbtools utilities as described below:
mdb-tables displays the list of tables in MS Access
mdb-scheme export the MS Access schema to MySQL database. The documentation doesn&#8217;t mention that MySQL is supported. You should use the [...]]]></description>
		<wfw:commentRss>http://mysqlpoint.com/how-to-export-ms-access-database-to-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I Enable Remote Access To MySQL Database?</title>
		<link>http://mysqlpoint.com/how-do-i-enable-remote-access-to-mysql-database/</link>
		<comments>http://mysqlpoint.com/how-do-i-enable-remote-access-to-mysql-database/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 19:35:08 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[mysqld]]></category>

		<guid isPermaLink="false">http://mysqlpoint.com/?p=98</guid>
		<description><![CDATA[Suppose you want to change and enable the remote access to MySQL DB on your linux server (Debian). By default, you don&#8217;t get such privileges so you will have to work your way through this. I have a very simple article for you so that you can enable the remote access. This is a pretty [...]]]></description>
		<wfw:commentRss>http://mysqlpoint.com/how-do-i-enable-remote-access-to-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Set Up Root Password for Your MySQL Server</title>
		<link>http://mysqlpoint.com/how-to-set-up-root-password-for-your-mysql-server/</link>
		<comments>http://mysqlpoint.com/how-to-set-up-root-password-for-your-mysql-server/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 19:33:01 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[mysqladmin]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://mysqlpoint.com/?p=96</guid>
		<description><![CDATA[If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To set up a root password for the first time, use the mysqladmin command at the shell prompt as follows:
$ mysqladmin -u root password newpass
If you want to change (or update) a [...]]]></description>
		<wfw:commentRss>http://mysqlpoint.com/how-to-set-up-root-password-for-your-mysql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
