<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: MySQL Error Number 1005 Can&#8217;t create table &#8216;.\mydb\#sql-328_45.frm&#8217; (errno: 150)</title>
	<atom:link href="http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/</link>
	<description>Custom Software Development</description>
	<lastBuildDate>Mon, 08 Mar 2010 16:27:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Amit Singh</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-115437</link>
		<dc:creator>Amit Singh</dc:creator>
		<pubDate>Wed, 10 Feb 2010 12:32:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-115437</guid>
		<description>Thanks! it helped me I solved my permanent problem</description>
		<content:encoded><![CDATA[<p>Thanks! it helped me I solved my permanent problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kai-Jin</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-115227</link>
		<dc:creator>Kai-Jin</dc:creator>
		<pubDate>Wed, 03 Feb 2010 10:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-115227</guid>
		<description>thy! uft8 != latin1 ;)</description>
		<content:encoded><![CDATA[<p>thy! uft8 != latin1 <img src='http://www.verysimple.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Cairol</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-114820</link>
		<dc:creator>Daniel Cairol</dc:creator>
		<pubDate>Wed, 20 Jan 2010 22:26:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-114820</guid>
		<description>THANKS BABY! My solution was number 4.</description>
		<content:encoded><![CDATA[<p>THANKS BABY! My solution was number 4.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erika</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-114578</link>
		<dc:creator>Erika</dc:creator>
		<pubDate>Wed, 13 Jan 2010 14:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-114578</guid>
		<description>Thanks, It solved my problem. One table had UNSIGNED checked and the other not. Pretty simple but very hard to find.</description>
		<content:encoded><![CDATA[<p>Thanks, It solved my problem. One table had UNSIGNED checked and the other not. Pretty simple but very hard to find.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJ</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-114371</link>
		<dc:creator>AJ</dc:creator>
		<pubDate>Fri, 08 Jan 2010 20:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-114371</guid>
		<description>If you use the SQL command,

SHOW ENGINE INNODB STATUS;

it will give you are more detailed error message.</description>
		<content:encoded><![CDATA[<p>If you use the SQL command,</p>
<p>SHOW ENGINE INNODB STATUS;</p>
<p>it will give you are more detailed error message.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Weiss</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-113546</link>
		<dc:creator>Brian Weiss</dc:creator>
		<pubDate>Thu, 17 Dec 2009 17:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-113546</guid>
		<description>My issue came up because I was trying to import/build a new table that had foreign keys in tables that didn&#039;t exist. The export from the old MYSQL server exported the tables in alpha numeric order, but on the new server, my CONSTRAINT statement was referencing foreign keys in tables that didn&#039;t yet exist as they were further down in the file. So I just cut and pasted the Create table statements into a new order, where all the ones that needed foreign keys were built after the tables they referenced. And it worked! Hope this helps others...</description>
		<content:encoded><![CDATA[<p>My issue came up because I was trying to import/build a new table that had foreign keys in tables that didn&#8217;t exist. The export from the old MYSQL server exported the tables in alpha numeric order, but on the new server, my CONSTRAINT statement was referencing foreign keys in tables that didn&#8217;t yet exist as they were further down in the file. So I just cut and pasted the Create table statements into a new order, where all the ones that needed foreign keys were built after the tables they referenced. And it worked! Hope this helps others&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amal Kaluarachchi</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-112961</link>
		<dc:creator>Amal Kaluarachchi</dc:creator>
		<pubDate>Tue, 01 Dec 2009 03:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-112961</guid>
		<description>I had the same problem and spent many hours on troubleshooting. This article helped me to figure it out the issue. It was I have set the ondelete to set null where the table field is set not null.
Thanks</description>
		<content:encoded><![CDATA[<p>I had the same problem and spent many hours on troubleshooting. This article helped me to figure it out the issue. It was I have set the ondelete to set null where the table field is set not null.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Firas Abd Alrahman</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-112619</link>
		<dc:creator>Firas Abd Alrahman</dc:creator>
		<pubDate>Thu, 19 Nov 2009 20:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-112619</guid>
		<description>I encountered this problem in this case
I created a foreign key
On Delete = Set Null
On Update = Set Null

but the foreign key field does Have &quot;Not null &quot; flag 
Just removed the check by mysql  GUI administrator and Everything was just fine</description>
		<content:encoded><![CDATA[<p>I encountered this problem in this case<br />
I created a foreign key<br />
On Delete = Set Null<br />
On Update = Set Null</p>
<p>but the foreign key field does Have &#8220;Not null &#8221; flag<br />
Just removed the check by mysql  GUI administrator and Everything was just fine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wirawit</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-112369</link>
		<dc:creator>wirawit</dc:creator>
		<pubDate>Thu, 12 Nov 2009 10:14:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-112369</guid>
		<description>Hey, Fixed my Bug! Thx!</description>
		<content:encoded><![CDATA[<p>Hey, Fixed my Bug! Thx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.verysimple.com/blog/2006/10/22/mysql-error-number-1005-cant-create-table-mydbsql-328_45frm-errno-150/comment-page-3/#comment-111561</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 19 Oct 2009 20:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=58#comment-111561</guid>
		<description>Also:

If the primary key you want to connect to your foreign key is UNSIGNED make it G** D*** SURE that your foreign key is also UNSIGNED.</description>
		<content:encoded><![CDATA[<p>Also:</p>
<p>If the primary key you want to connect to your foreign key is UNSIGNED make it G** D*** SURE that your foreign key is also UNSIGNED.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
