<?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>Coding Recipes &#187; MySQL</title>
	<atom:link href="http://codingrecipes.com/category/database/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Tue, 15 May 2012 02:57:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>MySQL: ERROR 1114 (HY000) at line 4424: The table &#8216;X&#8217; is full</title>
		<link>http://codingrecipes.com/mysql-error-1114-hy000-at-line-4424-the-table-x-is-full</link>
		<comments>http://codingrecipes.com/mysql-error-1114-hy000-at-line-4424-the-table-x-is-full#comments</comments>
		<pubDate>Sat, 14 Aug 2010 04:44:43 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=1021</guid>
		<description><![CDATA[Even though this could be a limitation by your file system check the value of the system variable: myisam_data_pointer_size If it&#8217;s set to 4 then the table can be a maximum of 4GB in size but if it&#8217;s set to 6 then the table can be a maximum of 256TB&#8230; To fix this try: edit [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/mysql-error-1114-hy000-at-line-4424-the-table-x-is-full/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHM/cPanel: MySQL Errors While Manually Transferring Accounts</title>
		<link>http://codingrecipes.com/whmcpanel-mysql-errors-while-manually-transferring-accounts</link>
		<comments>http://codingrecipes.com/whmcpanel-mysql-errors-while-manually-transferring-accounts#comments</comments>
		<pubDate>Fri, 13 Aug 2010 23:11:25 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[WHM/cPanel]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=1017</guid>
		<description><![CDATA[Errors like: DELIMITER must be followed by a &#8216;delimiter&#8217; character or string or ERROR X (X): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near If you get those errors the chances are that the MySQL version on the [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/whmcpanel-mysql-errors-while-manually-transferring-accounts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rearrange/move MySQL Table Columns</title>
		<link>http://codingrecipes.com/rearrange-move-mysql-table-columns</link>
		<comments>http://codingrecipes.com/rearrange-move-mysql-table-columns#comments</comments>
		<pubDate>Mon, 19 Oct 2009 21:01:34 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=141</guid>
		<description><![CDATA[To *move* a column to a particular position: ALTER TABLE `user` MODIFY COLUMN `permission` int&#40;10&#41; AFTER `password` To *move* a column to the beginning: ALTER TABLE `user` MODIFY COLUMN `permission` int&#40;10&#41; FIRST]]></description>
		<wfw:commentRss>http://codingrecipes.com/rearrange-move-mysql-table-columns/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Column To The Beginning Of a Table</title>
		<link>http://codingrecipes.com/add-a-column-to-the-beginning-of-a-table</link>
		<comments>http://codingrecipes.com/add-a-column-to-the-beginning-of-a-table#comments</comments>
		<pubDate>Fri, 18 Sep 2009 23:36:35 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.codingrecipes.com/?p=98</guid>
		<description><![CDATA[Assume that we want to add a column ‘id’ in the beginning of the table ‘test’: ALTER TABLE test ADD id INT NOT NULL FIRST;]]></description>
		<wfw:commentRss>http://codingrecipes.com/add-a-column-to-the-beginning-of-a-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change or Reset The Auto Increment Value</title>
		<link>http://codingrecipes.com/change-or-reset-the-auto-increment-value</link>
		<comments>http://codingrecipes.com/change-or-reset-the-auto-increment-value#comments</comments>
		<pubDate>Fri, 18 Sep 2009 23:33:17 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.codingrecipes.com/?p=96</guid>
		<description><![CDATA[Here is how to change the auto increment value to say 10 on the table &#8216;test&#8217;: ALTER TABLE test AUTO_INCREMENT 1;]]></description>
		<wfw:commentRss>http://codingrecipes.com/change-or-reset-the-auto-increment-value/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Column After a Specific Column On a Table</title>
		<link>http://codingrecipes.com/add-a-column-after-a-specific-column-on-a-table</link>
		<comments>http://codingrecipes.com/add-a-column-after-a-specific-column-on-a-table#comments</comments>
		<pubDate>Fri, 18 Sep 2009 23:30:23 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.codingrecipes.com/?p=94</guid>
		<description><![CDATA[Assume that we want to add a column &#8216;number&#8217; after &#8216;pass&#8217; column on table &#8216;test&#8217;: ALTER TABLE test ADD number INT&#40;12&#41; NOT NULL AFTER pass;]]></description>
		<wfw:commentRss>http://codingrecipes.com/add-a-column-after-a-specific-column-on-a-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy An Entire Table &#8211; Data &amp; Structure</title>
		<link>http://codingrecipes.com/copy-an-entire-table-data-structure</link>
		<comments>http://codingrecipes.com/copy-an-entire-table-data-structure#comments</comments>
		<pubDate>Fri, 18 Sep 2009 23:28:32 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.codingrecipes.com/?p=92</guid>
		<description><![CDATA[Assume that we want to copy our &#8216;user&#8217; table to a table called &#8216;backup&#8217;: CREATE TABLE backup LIKE user; INSERT INTO backup SELECT * FROM user;]]></description>
		<wfw:commentRss>http://codingrecipes.com/copy-an-entire-table-data-structure/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy Table Data ONLY</title>
		<link>http://codingrecipes.com/copy-table-data-only</link>
		<comments>http://codingrecipes.com/copy-table-data-only#comments</comments>
		<pubDate>Fri, 18 Sep 2009 23:26:31 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.codingrecipes.com/?p=89</guid>
		<description><![CDATA[Assume that we want to copy all the data from the table &#8216;user&#8217; into &#8216;backup&#8217; table: INSERT INTO backup SELECT * FROM user;]]></description>
		<wfw:commentRss>http://codingrecipes.com/copy-table-data-only/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy a Table Structure ONLY</title>
		<link>http://codingrecipes.com/copy-a-table-structure-only</link>
		<comments>http://codingrecipes.com/copy-a-table-structure-only#comments</comments>
		<pubDate>Fri, 18 Sep 2009 23:25:04 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.codingrecipes.com/?p=87</guid>
		<description><![CDATA[Assume that we want to copy the table &#8216;user&#8221;s structure into a new table called &#8216;backup&#8217;: CREATE TABLE backup LIKE user;]]></description>
		<wfw:commentRss>http://codingrecipes.com/copy-a-table-structure-only/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create An Index</title>
		<link>http://codingrecipes.com/create-an-index</link>
		<comments>http://codingrecipes.com/create-an-index#comments</comments>
		<pubDate>Fri, 18 Sep 2009 23:23:04 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.codingrecipes.com/?p=85</guid>
		<description><![CDATA[Assuming you want to create the index &#8216;name&#8217; on column &#8216;name&#8217; on table &#8216;test&#8217;: ALTER TABLE test ADD INDEX name &#40;name&#41; ; Where the first &#8216;name&#8217; is the name of the index and the &#8216;name&#8217; in parenthesis is the column name. If you want to index 2 columns: ALTER TABLE test ADD INDEX name &#40;name, [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/create-an-index/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

