<?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 Data Type Optimization Tips</title>
	<atom:link href="http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/</link>
	<description>Custom Software</description>
	<lastBuildDate>Tue, 15 May 2012 07:26:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: mysql InnoDB CONSTRAINT &#124; Mr.Meng的日志空间</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-5366</link>
		<dc:creator>mysql InnoDB CONSTRAINT &#124; Mr.Meng的日志空间</dc:creator>
		<pubDate>Tue, 28 Feb 2012 06:15:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-5366</guid>
		<description>[...] 这两字段必须严格地一致匹配，更多关于signed 和 unsigned 的信息，请参阅：http://www.verysimple.com/blog/?p=57 2， 你试图引用的其中一个外键没有建立起索引，或者不是一个primary key , [...]</description>
		<content:encoded><![CDATA[<p>[...] 这两字段必须严格地一致匹配，更多关于signed 和 unsigned 的信息，请参阅：http://www.verysimple.com/blog/?p=57 2， 你试图引用的其中一个外键没有建立起索引，或者不是一个primary key , [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-5215</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 13 Jan 2012 07:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-5215</guid>
		<description>Thanks for the very informative article. Can I suggest though that you change either the background or the font color. Gray over gray seems hard on the eyes.</description>
		<content:encoded><![CDATA[<p>Thanks for the very informative article. Can I suggest though that you change either the background or the font color. Gray over gray seems hard on the eyes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MySQL Error Number 1005 Can&#8217;t create table &#8216;.mydb#sql-328_45.frm&#8217; (errno: 150) &#124; VerySimple</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-3397</link>
		<dc:creator>MySQL Error Number 1005 Can&#8217;t create table &#8216;.mydb#sql-328_45.frm&#8217; (errno: 150) &#124; VerySimple</dc:creator>
		<pubDate>Sun, 03 Jul 2011 20:18:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-3397</guid>
		<description>[...] The two key fields type and/or size is not an exact match. For example, if one is INT(10) the key field needs to be INT(10) as well and not INT(11) or TINYINT. You may want to confirm the field size using SHOW CREATE TABLE because Query Browser will sometimes visually show just INTEGER for both INT(10) and INT(11). You should also check that one is not SIGNED and the other is UNSIGNED. They both need to be exactly the same. (More about signed vs unsigned here). [...]</description>
		<content:encoded><![CDATA[<p>[...] The two key fields type and/or size is not an exact match. For example, if one is INT(10) the key field needs to be INT(10) as well and not INT(11) or TINYINT. You may want to confirm the field size using SHOW CREATE TABLE because Query Browser will sometimes visually show just INTEGER for both INT(10) and INT(11). You should also check that one is not SIGNED and the other is UNSIGNED. They both need to be exactly the same. (More about signed vs unsigned here). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webvigator！ » MySQL 创建外键关联一定要注意的地方</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-2802</link>
		<dc:creator>Webvigator！ » MySQL 创建外键关联一定要注意的地方</dc:creator>
		<pubDate>Wed, 11 May 2011 09:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-2802</guid>
		<description>[Chinese translation of this page]

[...] 1， 两个字段的类型或者大小不严格匹配，例如，如果一个是INT(10), 那么外键也必须设置成INT(10), 而不是 INT(11) 也不能是 TINYINT. 你得使用 SHOW 命令来查看字段的大小，因为一些查询浏览器有时候把 int(10) 和int(11) 都显示为integer。另外，你还必须确定两个字段是否一个为 SIGNED,而另一个又是UNSIGNED, 这两字段必须严格地一致匹配，更多关于signed 和 unsigned 的信息，请参阅：http://www.verysimple.com/blog/?p=57 [...]</description>
		<content:encoded><![CDATA[<p>[Chinese translation of this page]</p>
<p>[...] 1， 两个字段的类型或者大小不严格匹配，例如，如果一个是INT(10), 那么外键也必须设置成INT(10), 而不是 INT(11) 也不能是 TINYINT. 你得使用 SHOW 命令来查看字段的大小，因为一些查询浏览器有时候把 int(10) 和int(11) 都显示为integer。另外，你还必须确定两个字段是否一个为 SIGNED,而另一个又是UNSIGNED, 这两字段必须严格地一致匹配，更多关于signed 和 unsigned 的信息，请参阅：http://www.verysimple.com/blog/?p=57 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Staš</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-1861</link>
		<dc:creator>Staš</dc:creator>
		<pubDate>Mon, 17 Jan 2011 10:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-1861</guid>
		<description>Good tips!</description>
		<content:encoded><![CDATA[<p>Good tips!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cullun</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-113</link>
		<dc:creator>Cullun</dc:creator>
		<pubDate>Fri, 02 Apr 2010 14:10:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-113</guid>
		<description>Great read, thanks for the information.</description>
		<content:encoded><![CDATA[<p>Great read, thanks for the information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: House Numbers</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-112</link>
		<dc:creator>House Numbers</dc:creator>
		<pubDate>Wed, 11 Nov 2009 05:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-112</guid>
		<description>Great post! I was able to noticeable reduce the size of my db by changing some of my primary key fields that were INT into something more appropriate like UNSIGNED SMALLINT, UNSIGNED TINYINT, etc where it was appropriate.
thanks for the tips!</description>
		<content:encoded><![CDATA[<p>Great post! I was able to noticeable reduce the size of my db by changing some of my primary key fields that were INT into something more appropriate like UNSIGNED SMALLINT, UNSIGNED TINYINT, etc where it was appropriate.<br />
thanks for the tips!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nickmallare.com &#187; Blog Archive &#187; MySQL Datatype INT: Signed vs. Unsigned</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-111</link>
		<dc:creator>nickmallare.com &#187; Blog Archive &#187; MySQL Datatype INT: Signed vs. Unsigned</dc:creator>
		<pubDate>Mon, 31 Aug 2009 14:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-111</guid>
		<description>[...] source: http://www.verysimple.com/blog/2006/10/22/mysql-data-type-optimization-tips/ [...]</description>
		<content:encoded><![CDATA[<p>[...] source: <a href="http://www.verysimple.com/blog/2006/10/22/mysql-data-type-optimization-tips/" rel="nofollow">http://www.verysimple.com/blog/2006/10/22/mysql-data-type-optimization-tips/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-110</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Wed, 25 Mar 2009 00:04:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-110</guid>
		<description>Thanks for the useful tips! Great read for a newstart @ mysql.</description>
		<content:encoded><![CDATA[<p>Thanks for the useful tips! Great read for a newstart @ mysql.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramon Bispo</title>
		<link>http://verysimple.com/2006/10/22/mysql-data-type-optimization-tips/#comment-109</link>
		<dc:creator>Ramon Bispo</dc:creator>
		<pubDate>Mon, 16 Jul 2007 01:57:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.verysimple.com/blog/?p=57#comment-109</guid>
		<description>This is very useful!

Thanks!</description>
		<content:encoded><![CDATA[<p>This is very useful!</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

